Merge "Don't try to execute _stop commands" into feature/zuulv3

This commit is contained in:
Jenkins 2016-12-14 16:24:28 +00:00 committed by Gerrit Code Review
commit 9ca3168191
1 changed files with 2 additions and 1 deletions

View File

@ -280,7 +280,8 @@ class LaunchServer(object):
while self._command_running:
try:
command = self.command_socket.get()
self.command_map[command]()
if command != '_stop':
self.command_map[command]()
except Exception:
self.log.exception("Exception while processing command")