Merge "Fix zuul_stream callback dict modification" into feature/zuulv3

This commit is contained in:
Zuul 2017-08-17 21:42:29 +00:00 committed by Gerrit Code Review
commit c94713b4a1
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ class CallbackModule(default.CallbackModule):
# We have a custom zuul module that doesn't want the parameters
# from its returned splatted to stdout. This is typically for
# modules that are collecting data to be displayed some other way.
for key in result_dict.keys():
for key in list(result_dict.keys()):
if key != 'changed':
result_dict.pop(key)