feat: implement IPC quit command

Co-authored-by: aider (gemini/gemini-3.1-pro-preview) <aider@aider.chat>
This commit is contained in:
Tanner
2026-07-28 16:28:29 -06:00
parent 47d2045858
commit 5973724730
+3
View File
@@ -115,6 +115,9 @@ def handle_ipc_client(conn, state):
state.seek_request = float(val) state.seek_request = float(val)
else: else:
resp["error"] = "property not found" resp["error"] = "property not found"
elif cmd[0] == "quit":
with state.lock:
state.running = False
else: else:
resp["error"] = "unknown command" resp["error"] = "unknown command"