Fix ansible-test unicode error with redact option.
This commit is contained in:
parent
f8834c5339
commit
2ef4ba3b4d
1 changed files with 2 additions and 2 deletions
|
@ -301,7 +301,7 @@ class AnsibleCoreCI(object):
|
|||
)
|
||||
|
||||
if self.connection.password:
|
||||
display.sensitive.add(self.connection.password)
|
||||
display.sensitive.add(str(self.connection.password))
|
||||
|
||||
status = 'running' if self.connection.running else 'starting'
|
||||
|
||||
|
@ -453,7 +453,7 @@ class AnsibleCoreCI(object):
|
|||
:type config: dict[str, str]
|
||||
:rtype: bool
|
||||
"""
|
||||
self.instance_id = config['instance_id']
|
||||
self.instance_id = str(config['instance_id'])
|
||||
self.endpoint = config['endpoint']
|
||||
self.started = True
|
||||
|
||||
|
|
Loading…
Reference in a new issue