We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f98c35 commit 9d65d44Copy full SHA for 9d65d44
crates/common/src/http/mod.rs
@@ -677,7 +677,9 @@ impl ConvexHttpService {
677
}
678
let make_svc = router.into_make_service_with_connect_info::<SocketAddr>();
679
tracing::info!("{} listening on {addr}", self.service_name);
680
- serve_http(make_svc, addr, shutdown).await
+ serve_http(make_svc, addr, shutdown)
681
+ .await
682
+ .with_context(|| format!("Could not start {} on {addr}", self.service_name))
683
684
685
/// Apply `middleware_fn` to incoming requests *before* passing them to
0 commit comments