From 599496111c3474b17a1a924fd9d698e0454a6c3c Mon Sep 17 00:00:00 2001 From: clockwork-labs-bot Date: Tue, 28 Apr 2026 23:04:24 +0200 Subject: [PATCH] Fix listen_addr help default value (#4812) # Description of Changes Fix the `spacetime start --listen-addr` help text to match the actual default value. The flag already defaults to `0.0.0.0:3000`, but the help text incorrectly said port 80. # API and ABI breaking changes None. # Expected complexity level and risk Complexity 1. # Testing - [x] `cargo fmt --all --check` - [x] `cargo check -p spacetimedb-standalone` Co-authored-by: clockwork-labs-bot Co-authored-by: Tyler Cloutier --- crates/standalone/src/subcommands/start.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/standalone/src/subcommands/start.rs b/crates/standalone/src/subcommands/start.rs index 42a04d1e2..1792a9f3c 100644 --- a/crates/standalone/src/subcommands/start.rs +++ b/crates/standalone/src/subcommands/start.rs @@ -34,7 +34,7 @@ pub fn cli() -> clap::Command { .default_value("0.0.0.0:3000") .help( "The address and port where SpacetimeDB should listen for connections. \ - This defaults to to listen on all IP addresses on port 80.", + This defaults to listening on all IP addresses on port 3000.", ), ) .arg(