Skip to content

Commit 1e36ce4

Browse files
cijothomasCopilot
andauthored
Update opentelemetry-sdk/src/trace/span_processor.rs
Co-authored-by: Copilot <[email protected]>
1 parent 8767299 commit 1e36ce4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opentelemetry-sdk/src/trace/span_processor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,9 @@ impl SpanProcessor for BatchSpanProcessor {
673673
// If the control message could not be sent, emit a warning.
674674
otel_debug!(
675675
name: "BatchSpanProcessor.Shutdown.ControlChannelFull",
676-
message = "Control message to shutdown the worker thread could not be sent as the control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call."
676+
message = "Control message to shutdown the worker thread could not be sent as the control channel is full. This can occur if user repeatedly calls force_flush/shutdown without finishing the previous call."
677677
);
678-
Err(OTelSdkError::InternalFailure("Shutdown cannot be performed as Control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call.".into()))
678+
Err(OTelSdkError::InternalFailure("Shutdown cannot be performed as Control channel is full. This can occur if user repeatedly calls force_flush/shutdown without finishing the previous call.".into()))
679679
}
680680
Err(std::sync::mpsc::TrySendError::Disconnected(_)) => {
681681
// Given background thread is the only receiver, and it's

0 commit comments

Comments
 (0)