From a8ead964c50171385d31f7ccdf89093f76ac1696 Mon Sep 17 00:00:00 2001 From: Maria Marcano Date: Fri, 9 Jun 2017 15:06:03 +0200 Subject: [PATCH] Adjust connection lost message --- master/buildbot/process/build.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/master/buildbot/process/build.py b/master/buildbot/process/build.py index 4db78ede5ff..c3274a65b45 100644 --- a/master/buildbot/process/build.py +++ b/master/buildbot/process/build.py @@ -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: