Skip to content

Commit 0729754

Browse files
committed
chore: explicit parent
1 parent 7a6873d commit 0729754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/router.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ where
320320

321321
for (batch_idx, req) in inbound.iter().enumerate() {
322322
let req = req.map(|req| {
323-
let span = debug_span!("RouteFuture::poll", batch_idx, method = req.method(), id = ?req.id());
323+
let span = debug_span!(parent: &span, "RouteFuture::poll", batch_idx, method = req.method(), id = ?req.id());
324324
let args = HandlerArgs::new(ctx.clone(), req);
325325
self.inner
326326
.call_with_state(args, state.clone())

0 commit comments

Comments
 (0)