Skip to content

Commit ed83d00

Browse files
authored
fix(mcp): default port (#4324)
1 parent 6fa62c4 commit ed83d00

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rust/cloud-storage/mcp_service/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ pub struct Config {
6262
/// The environment we are in.
6363
#[macro_config_default(Environment::new_or_prod())]
6464
pub environment: Environment,
65-
/// Port to listen on. Defaults to `8090` when unset.
66-
#[macro_config_default(8090)]
65+
/// Port to listen on. Defaults to `8080` when unset.
66+
#[macro_config_default(8080)]
6767
pub port: usize,
6868
/// The connection URL for the Postgres database this application uses.
6969
pub database_url: DatabaseUrl,

0 commit comments

Comments
 (0)