2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-02-19 12:05:13 +00:00

Fix IPv6 address support in geist plugin

This commit is contained in:
Jarrod Johnson 2022-11-09 15:11:25 -05:00
parent 81c14db9dd
commit 35abe0b9ad

View File

@ -48,7 +48,7 @@ class GeistClient(object):
cv = util.TLSCertVerifier(
self.configmanager, self.node,
'pubkeys.tls_hardwaremanager').verify_cert
self._wc = wc.SecureHTTPConnection(target, verifycallback=cv)
self._wc = wc.SecureHTTPConnection(target, port=443, verifycallback=cv)
return self._wc
def login(self, configmanager):