2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Fix TSM setup with python3 and custom credentials

This commit is contained in:
Jarrod Johnson 2019-10-15 11:19:04 -04:00
parent ceced11ae8
commit 4a35cc25f0

View File

@ -112,6 +112,8 @@ class NodeHandler(generic.NodeHandler):
cd = creds.get(nodename, {})
user, passwd, _ = self.get_node_credentials(
nodename, creds, self.DEFAULT_USER, self.DEFAULT_PASS)
user = util.stringify(user)
passwd = util.stringify(passwd)
self.targuser = user
self.targpass = passwd
wc = self._get_wc()