Remove follows-from relation for body
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Aode (lion) 2022-04-06 16:15:33 -05:00
parent d8f1f2e6f6
commit 9d44100e32
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "tracing-awc"
description = "Tracing instrumentation for the awc http client"
version = "0.1.2"
version = "0.1.3"
authors = ["asonix <asonix@asonix.dog"]
edition = "2018"
license = "AGPL-3.0"

View file

@ -183,7 +183,6 @@ where
ConnectResponse::Client(client_response.map_body(|_, payload| {
let body_span =
tracing::info_span!(parent: None, "HTTP Client Response Body");
body_span.follows_from(span.id());
let payload = InstrumentedBody::new(body_span, payload);
let payload: Pin<Box<dyn Stream<Item = Result<Bytes, PayloadError>>>> =
Box::pin(payload);