From 2b01d9fbfa80b0da7bac6428b8319678a7d73c97 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 30 Jan 2023 12:40:40 -0500 Subject: [PATCH] Properly store all candidate host ip addresses This is needed to ensure that mis-detected primary ip falls through to another viable ip --- confluent_osdeploy/common/initramfs/opt/confluent/bin/apiclient | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_osdeploy/common/initramfs/opt/confluent/bin/apiclient b/confluent_osdeploy/common/initramfs/opt/confluent/bin/apiclient index 0287a4f1..a8b5e39b 100644 --- a/confluent_osdeploy/common/initramfs/opt/confluent/bin/apiclient +++ b/confluent_osdeploy/common/initramfs/opt/confluent/bin/apiclient @@ -253,6 +253,7 @@ class HTTPSClient(client.HTTPConnection, object): self.stdheaders['CONFLUENT_NODENAME'] = node if line.startswith('MANAGER:') and not host: host = line.split(' ')[1] + self.hosts.append(host) if not plainhost: plainhost = host if line.startswith('EXTMGRINFO:'):