Skip to content

Commit

Permalink
Lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-sentry committed Jul 30, 2024
1 parent 330b93a commit 5aef589
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ pub fn extract_span_tags(event: &Event, spans: &mut [Annotated<Span>], max_tag_v
match span.measurements.value_mut() {
Some(left) => {
shared_measurements.iter().for_each(|(key, val)| {
left.insert(key.clone().into(), val.clone().into());
left.insert(key.clone(), val.clone());
})
}
None => span.measurements.set_value(Some(shared_measurements.clone()))
Expand Down Expand Up @@ -1716,6 +1716,10 @@ LIMIT 1
value: 300.0,
unit: None,
},
"client_sample_rate": Measurement {
value: 0.1,
unit: None,
},
},
)
"###);
Expand Down

0 comments on commit 5aef589

Please sign in to comment.