diff --git a/crates/pctx_config/src/server.rs b/crates/pctx_config/src/server.rs index 10e5734d..68c376b2 100644 --- a/crates/pctx_config/src/server.rs +++ b/crates/pctx_config/src/server.rs @@ -169,10 +169,7 @@ impl ServerConfig { let transport = StreamableHttpClientTransport::with_client( reqwest_client, - StreamableHttpClientTransportConfig { - uri: http_cfg.url.as_str().into(), - ..Default::default() - }, + StreamableHttpClientTransportConfig::with_uri(http_cfg.url.as_str()), ); match init_request.serve(transport).await { Ok(c) => Ok(c),