Skip to content

Commit abcc350

Browse files
committed
Fixed AnnotatedCommand for buildbot v3.11.
1 parent 5cb2019 commit abcc350

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

zorg/buildbot/commands/AnnotatedCommand.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def startStep(self, remote, done=False):
165165
# update the summary one last time, make sure that completes,
166166
# and then don't update it any more.
167167
self.updateSummary()
168-
yield self.updateSummary.stop()
168+
yield self._update_summary_debouncer.stop()
169169

170170
# Update step status in the database.
171171
yield self.finishStep()
@@ -174,6 +174,8 @@ def startStep(self, remote, done=False):
174174
"stepid={}, buildid={}, results={}".format(
175175
self.name, self.stepid, self.build.buildid, self.results))
176176

177+
return self.results
178+
177179
def requestFinish(self, status=None):
178180
debuglog("AnnotatedBuildStep::requestFinish({}): '{}': "
179181
"stepid={}, buildid={}, results={}".format(

0 commit comments

Comments
 (0)