Skip to content

Commit

Permalink
try the old way of shutting down slaves, too
Browse files Browse the repository at this point in the history
This was (presumably accidentally?) commented out in
74f2720.  Refs #429.
  • Loading branch information
djmitche committed Feb 8, 2011
1 parent 51c9433 commit 7175a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions master/buildbot/buildslave.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,9 +521,9 @@ def _errback(why):
return d
log.err("Couldn't find remote builder to shut down slave")
return defer.succeed(None)
#wfd = defer.waitForDeferred(old_way())
#yield wfd
#wfd.getResult()
wfd = defer.waitForDeferred(old_way())
yield wfd
wfd.getResult()

def maybeShutdown(self):
"""Shut down this slave if it has been asked to shut down gracefully,
Expand Down

0 comments on commit 7175a0d

Please sign in to comment.