Index: pylibs/buildbot/status/status_push.py |
diff --git a/pylibs/buildbot/status/status_push.py b/pylibs/buildbot/status/status_push.py |
index 45318acc80148465d185872426cb41ffae530dac..e3c407b0456522bbcd6bf0ad680a07f7c0d3546c 100644 |
--- a/pylibs/buildbot/status/status_push.py |
+++ b/pylibs/buildbot/status/status_push.py |
@@ -233,30 +233,46 @@ class StatusPush(StatusReceiverMultiService): |
self.push('buildETAUpdate', build=build, ETA=ETA) |
def stepStarted(self, build, step): |
- self.push('stepStarted', build=build, step=step) |
+ self.push('stepStarted', |
+ properties=build.getProperties().asList(), |
+ step=step) |
def stepTextChanged(self, build, step, text): |
- self.push('stepTextChanged', build=build, step=step, text=text) |
+ self.push('stepTextChanged', |
+ properties=build.getProperties().asList(), |
+ step=step, |
+ text=text) |
def stepText2Changed(self, build, step, text2): |
- self.push('stepText2Changed', build=build, step=step, text2=text2) |
+ self.push('stepText2Changed', |
+ properties=build.getProperties().asList(), |
+ step=step, |
+ text2=text2) |
def stepETAUpdate(self, build, step, ETA, expectations): |
- self.push('stepETAUpdate', build=build, step=step, ETA=ETA, |
+ self.push('stepETAUpdate', |
+ properties=build.getProperties().asList(), |
+ step=step, |
+ ETA=ETA, |
expectations=expectations) |
def logStarted(self, build, step, log): |
- self.push('logStarted', build=build, step=step, log=log) |
+ self.push('logStarted', |
+ properties=build.getProperties().asList(), |
+ step=step) |
def logFinished(self, build, step, log): |
- self.push('logFinished', build=build, step=step) |
+ self.push('logFinished', |
+ properties=build.getProperties().asList(), |
+ step=step) |
def stepFinished(self, build, step, results): |
- self.push('stepFinished', build=build, step=step, results=results) |
+ self.push('stepFinished', |
+ properties=build.getProperties().asList(), |
+ step=step) |
def buildFinished(self, builderName, build, results): |
- self.push('buildFinished', builderName=builderName, build=build, |
- results=results) |
+ self.push('buildFinished', build=build) |
def builderRemoved(self, builderName): |
self.push('buildedRemoved', builderName=builderName) |