2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 19:10:10 +00:00

Have the get_webclient always return two elements

Some scenario existed where the function could return
None and this could break code expectations that it
always returned a tuple and the first value needs
to be checked for None.
This commit is contained in:
Jarrod Johnson 2020-01-08 10:17:06 -05:00
parent 954b2dd15c
commit 546296ce71

View File

@ -175,6 +175,7 @@ class NodeHandler(immhandler.NodeHandler):
# password changes after provisional changes
self.set_password_policy('')
return (wc, pwdchanged)
return (None, None)
@property
def wc(self):