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")