Skip to content

Commit 137b363

Browse files
committed
chore: minor fix after rebase brought auth changes
1 parent ff138fc commit 137b363

File tree

1 file changed

+3
-5
lines changed
  • crates/apollo-mcp-server/src

1 file changed

+3
-5
lines changed

crates/apollo-mcp-server/src/main.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ use clap::builder::Styles;
1111
use clap::builder::styling::{AnsiColor, Effects};
1212
use runtime::IdOrDefault;
1313
use runtime::logging::Logging;
14-
use tracing::{info, warn};
15-
use tokio::signal;
1614
use std::path::PathBuf;
15+
use tokio::signal;
1716
use tokio_util::sync::CancellationToken;
18-
use tracing::{Level, info, warn};
19-
use tracing_subscriber::EnvFilter;
17+
use tracing::{info, warn};
2018

2119
mod runtime;
2220

@@ -153,7 +151,7 @@ async fn main() -> anyhow::Result<()> {
153151
.start();
154152

155153
match config.transport {
156-
Transport::StreamableHttp { address, port } => {
154+
Transport::StreamableHttp { address, port, .. } => {
157155
if config.proxy.enabled {
158156
let url = config.proxy.url(&address, &port);
159157
let cancellation_token: CancellationToken = CancellationToken::new();

0 commit comments

Comments
 (0)