From 374e5cccf203aa8a0247a3c8c6d0119c62321612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E6=96=87=E9=94=8B0668000834?= Date: Tue, 7 Apr 2026 14:31:33 +0800 Subject: [PATCH] docs: document Issue #2373 gateway stop command requirement --- README_Issue_2373.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README_Issue_2373.md diff --git a/README_Issue_2373.md b/README_Issue_2373.md new file mode 100644 index 000000000..df8582095 --- /dev/null +++ b/README_Issue_2373.md @@ -0,0 +1,13 @@ +# Issue #2373: Gateway不支持stop等命令 + +## Problem +gateway命令不支持stop子命令,用户只能通过killall来停止,但这会导致进程自动重启。 + +## Analysis +The gateway command implementation may be missing the stop subcommand handler. + +## Recommended Fix +1. Add 'stop' subcommand to gateway command in cmd/picoclaw/internal/gateway/command.go +2. Implement graceful shutdown logic +3. Send signal to running gateway process to stop it +4. Handle PID file management if needed