Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nullchinchilla committed Jan 21, 2025
1 parent b35d8d5 commit 9e2aabd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binaries/geph5-exit/src/listen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ async fn handle_client(mut client: impl Pipe) -> anyhow::Result<()> {
stream,
is_free,
)
.race(new_task_until_death(Duration::from_secs(30)))
.map_err(|e| tracing::debug!(err = debug(e), "stream died with")),
.race(new_task_until_death(Duration::from_secs(1)))
.map_err(|e| tracing::trace!(err = debug(e), "stream died with")),
)
.detach();
}
Expand Down

0 comments on commit 9e2aabd

Please sign in to comment.