mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Merge pull request #43878 from netzmacher/develop
Bugfix: runners/survey.py Python3 support
This commit is contained in:
commit
4a942b75e9
@ -171,7 +171,7 @@ def _get_pool_results(*args, **kwargs):
|
||||
|
||||
# hash minion return values as a string
|
||||
for minion in sorted(minions):
|
||||
digest = hashlib.sha256(str(minions[minion])).hexdigest()
|
||||
digest = hashlib.sha256(str(minions[minion]).encode(__salt_system_encoding__)).hexdigest()
|
||||
if digest not in ret:
|
||||
ret[digest] = {}
|
||||
ret[digest]['pool'] = []
|
||||
|
Loading…
Reference in New Issue
Block a user