Skip to content

Commit 21147c1

Browse files
committed
Fix clippy lints
Signed-off-by: Sascha Grunert <[email protected]>
1 parent 9e35b71 commit 21147c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conmon-rs/server/src/telemetry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl Telemetry {
5858

5959
let metadata = Metadata(capnp_util::into_map(reader)?);
6060
let ctx = global::get_text_map_propagator(|prop| prop.extract(&metadata));
61-
Span::current().set_parent(ctx);
61+
let _ = Span::current().set_parent(ctx);
6262

6363
Ok(())
6464
}

0 commit comments

Comments
 (0)