Skip to content
This repository has been archived by the owner on May 24, 2018. It is now read-only.

Commit

Permalink
Adjust connection lost message
Browse files Browse the repository at this point in the history
  • Loading branch information
mariangemarcano committed Jun 9, 2017
1 parent 42eb6aa commit a8ead96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions master/buildbot/process/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,11 +544,10 @@ def lostRemote(self, remote=None):
log.msg("%s.lostRemote" % self)
self.remote = None
self.result = RETRY
self.text = ["lost", "remote"]
self.text = ["Katana will automatically retry this build"]
if self.currentStep:
# this should cause the step to finish.
log.msg(" stopping currentStep", self.currentStep)
self.text += ["slave"]
self.currentStep.addErrorResult(Failure(error.ConnectionLost()))
self.currentStep.interrupt(Failure(error.ConnectionLost()))
else:
Expand Down

0 comments on commit a8ead96

Please sign in to comment.