fix issues

This commit is contained in:
jaberjaber23
2026-02-27 00:57:46 +03:00
parent ff408248d1
commit a1d6776989
8 changed files with 67 additions and 14 deletions

View File

@@ -75,6 +75,7 @@ async fn start_test_server_with_provider(
peer_registry: None,
bridge_manager: tokio::sync::Mutex::new(None),
channels_config: tokio::sync::RwLock::new(Default::default()),
shutdown_notify: Arc::new(tokio::sync::Notify::new()),
});
let app = Router::new()
@@ -700,6 +701,7 @@ async fn start_test_server_with_auth(api_key: &str) -> TestServer {
peer_registry: None,
bridge_manager: tokio::sync::Mutex::new(None),
channels_config: tokio::sync::RwLock::new(Default::default()),
shutdown_notify: Arc::new(tokio::sync::Notify::new()),
});
let api_key_state = state.kernel.config.api_key.clone();