-
-
Notifications
You must be signed in to change notification settings - Fork 80.3k
gateway health/probe reject --port while gateway run accepts it #79100
Copy link
Copy link
Closed
Labels
P2Normal backlog priority with limited blast radius.Normal backlog priority with limited blast radius.clawsweeper:fix-shape-clearClawSweeper found a clear likely implementation shape for this issue.ClawSweeper found a clear likely implementation shape for this issue.clawsweeper:queueable-fixClawSweeper marked this issue as an existing queue_fix_pr work candidate.ClawSweeper marked this issue as an existing queue_fix_pr work candidate.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:otherThis issue has meaningful maintainer-visible impact outside the owned taxonomy.This issue has meaningful maintainer-visible impact outside the owned taxonomy.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.no-staleExclude from stale automationExclude from stale automation
Description
Metadata
Metadata
Assignees
Labels
P2Normal backlog priority with limited blast radius.Normal backlog priority with limited blast radius.clawsweeper:fix-shape-clearClawSweeper found a clear likely implementation shape for this issue.ClawSweeper found a clear likely implementation shape for this issue.clawsweeper:queueable-fixClawSweeper marked this issue as an existing queue_fix_pr work candidate.ClawSweeper marked this issue as an existing queue_fix_pr work candidate.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:otherThis issue has meaningful maintainer-visible impact outside the owned taxonomy.This issue has meaningful maintainer-visible impact outside the owned taxonomy.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.no-staleExclude from stale automationExclude from stale automation
Type
Fields
No fields configured for issues without a type.
Summary
In OpenClaw 2026.5.6,
gateway run --port 18789accepts--port, but adjacent gateway subcommands reject the same flag:openclaw gateway health --port 18789->error: unknown option '--port'openclaw gateway probe --port 18789->error: unknown option '--port'This makes scripts awkward because
runcan target a non-default port buthealth/probecannot target the same port through the same visible option shape.Environment
2026.5.6 (c97b9f7)v24.15.0openclaw@latestimladri-sidequest18789Reproduction
Actual
Both subcommands reject
--port:Expected
Either:
gateway healthandgateway probeshould accept--portlikegateway run, orWhy this matters
Local automation and integration tests often start OpenClaw on a controlled port. It is natural to expect adjacent gateway commands to accept the same targeting option.