commit | 9ca3168191574567ba403ff71413fb1f12c5d19a | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Wed Dec 14 16:24:28 2016 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Wed Dec 14 16:24:28 2016 +0000 |
tree | 0927caf9f2f938efe3a60f5b6bae0b74b2a844a9 | |
parent | d5cb3c222d2c97df27e6d80ac60b7e0ac1fc4a43 [diff] | |
parent | 39ee7ceca3338fdddef5211809d04ffaa58c72df [diff] |
Merge "Don't try to execute _stop commands" into feature/zuulv3
diff --git a/zuul/launcher/server.py b/zuul/launcher/server.py index 74cc2be..bfcc8a4 100644 --- a/zuul/launcher/server.py +++ b/zuul/launcher/server.py
@@ -280,7 +280,8 @@ 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")