mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
Merge pull request #34997 from saltstack/revert-34990-decode-bytes-integration-init
Revert "Decode byte strings when running tests in Python 3"
This commit is contained in:
commit
bd995c014d
@ -566,7 +566,7 @@ class SaltDaemonScriptBase(SaltScriptBase, ShellTestCase):
|
||||
del sock
|
||||
elif isinstance(port, str):
|
||||
joined = self.run_run('manage.joined', config_dir=self.config_dir)
|
||||
joined = [x.decode().lstrip('- ') for x in joined]
|
||||
joined = [x.lstrip('- ') for x in joined]
|
||||
if port in joined:
|
||||
check_ports.remove(port)
|
||||
yield gen.sleep(0.125)
|
||||
|
Loading…
Reference in New Issue
Block a user