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 4c7bf58 commit 5575c4fCopy full SHA for 5575c4f
opentelemetry/src/trace/context.rs
@@ -55,7 +55,9 @@ impl SpanRef<'_> {
55
if let Some(ref inner) = self.0.inner {
56
match inner.lock() {
57
Ok(mut locked) => f(&mut locked),
58
- Err(err) => global::handle_error(err),
+ Err(_) => {
59
+ // Ignoring the error silently. TODO: Add specific handling if needed.
60
+ }
61
}
62
63
0 commit comments