Skip to content

Commit

Permalink
changed mutex poisioning error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb committed Oct 29, 2024
1 parent 3381f7e commit c0999d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl Inner {
.unwrap_or_else(|_err| {
otel_warn!(
name: "JaegerRemoteSampler.MutexPoisoned",
message = "Unable to update Jaeger Remote sampling strategy: the sampler's internal mutex is poisoned, likely due to a panic in another thread holding the lock. The last known configuration will continue to be used until the remote sampling client is restarted.",
message = "Unable to update Jaeger Remote sampling strategy: the sampler's internal mutex is poisoned, likely due to a panic in another thread holding the lock. The last known configuration will continue to be used until the application is restarted.",
);

Check warning on line 113 in opentelemetry-sdk/src/trace/sampler/jaeger_remote/sampling_strategy.rs

View check run for this annotation

Codecov / codecov/patch

opentelemetry-sdk/src/trace/sampler/jaeger_remote/sampling_strategy.rs#L110-L113

Added lines #L110 - L113 were not covered by tests
});
}
Expand Down

0 comments on commit c0999d0

Please sign in to comment.