mirror of
https://github.com/xcat2/confluent.git
synced 2026-08-28 01:26:44 +00:00
151fb1efc8
local_node_trust_setup() called get_cluster_list() and sign_host_key() without awaiting them, so "osdeploy initialize -l" aborted with "TypeError: cannot unpack non-iterable coroutine object" before doing any work. Both awaits have to land together: sign_host_key() is called in a loop that unlinks the existing ssh_host_*_key-cert.pub before writing the new one, so fixing only the unpack would delete every host certificate and then fail.