Merge "Remove pipeline argument from various report fncts" into feature/zuulv3

This commit is contained in:
Jenkins
2017-06-07 12:37:54 +00:00
committed by Gerrit Code Review
6 changed files with 41 additions and 42 deletions

View File

@@ -165,7 +165,7 @@ class PipelineManager(object):
report_errors = []
if len(action_reporters) > 0:
for reporter in action_reporters:
ret = reporter.report(self.pipeline, item)
ret = reporter.report(item)
if ret:
report_errors.append(ret)
if len(report_errors) == 0: