From 72825d55264453aa47ab4504e74923a3c0181a1d Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 8 Mar 2026 07:07:39 -0700 Subject: [PATCH] fix(openclaw-bridge): add 'gateway --port 18789' subcommand to openclaw supervisord entry Without a subcommand the CLI prints help and exits (status 1), causing supervisord to restart it in a loop and the OC gateway to never start. Co-Authored-By: Claude Sonnet 4.6 --- packages/openclaw-bridge/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/openclaw-bridge/supervisord.conf b/packages/openclaw-bridge/supervisord.conf index 2d674ce..2d5edf3 100644 --- a/packages/openclaw-bridge/supervisord.conf +++ b/packages/openclaw-bridge/supervisord.conf @@ -14,7 +14,7 @@ pidfile=/tmp/supervisord.pid ; OpenClaw gateway process [program:openclaw] -command=node /app/openclaw/dist/index.js +command=node /app/openclaw/dist/index.js gateway --port 18789 directory=/app/openclaw autostart=true autorestart=true