File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
crates/apollo-mcp-server/src Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,10 @@ use clap::builder::Styles;
11
11
use clap:: builder:: styling:: { AnsiColor , Effects } ;
12
12
use runtime:: IdOrDefault ;
13
13
use runtime:: logging:: Logging ;
14
- use tracing:: { info, warn} ;
15
- use tokio:: signal;
16
14
use std:: path:: PathBuf ;
15
+ use tokio:: signal;
17
16
use tokio_util:: sync:: CancellationToken ;
18
- use tracing:: { Level , info, warn} ;
19
- use tracing_subscriber:: EnvFilter ;
17
+ use tracing:: { info, warn} ;
20
18
21
19
mod runtime;
22
20
@@ -153,7 +151,7 @@ async fn main() -> anyhow::Result<()> {
153
151
. start ( ) ;
154
152
155
153
match config. transport {
156
- Transport :: StreamableHttp { address, port } => {
154
+ Transport :: StreamableHttp { address, port, .. } => {
157
155
if config. proxy . enabled {
158
156
let url = config. proxy . url ( & address, & port) ;
159
157
let cancellation_token: CancellationToken = CancellationToken :: new ( ) ;
You can’t perform that action at this time.
0 commit comments