try keep context accross async call

This commit is contained in:
Floriane TUERNAL SABOTINOV
2025-09-01 15:57:54 +02:00
parent bb9f0540e8
commit bda45b405c
2 changed files with 2 additions and 1 deletions
@@ -854,6 +854,7 @@ impl<R, S> FreshHandler<R, S> {
}
}
#[instrument(skip_all)]
pub(crate) async fn handle_initial_client_request(
&mut self,
request: ClientControlRequest,
@@ -11,7 +11,7 @@ use std::time::Duration;
use time::OffsetDateTime;
use tokio::io::{AsyncRead, AsyncWrite};
use tokio_tungstenite::WebSocketStream;
use tracing::{debug, instrument, trace, warn};
use tracing::{debug, instrument, Instrument, trace, warn};
pub(crate) use self::authenticated::AuthenticatedHandler;
pub(crate) use self::fresh::FreshHandler;