Skip to content

Commit 8767299

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

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
@@ -609,9 +609,9 @@ impl SpanProcessor for BatchSpanProcessor {
609609
// If the control message could not be sent, emit a warning.
610610
otel_debug!(
611611
name: "BatchSpanProcessor.ForceFlush.ControlChannelFull",
612-
message = "Control message to flush 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."
612+
message = "Control message to flush 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."
613613
);
614-
Err(OTelSdkError::InternalFailure("ForceFlush cannot be performed as Control channel is full. This can occur if user repeatedily calls force_flush/shutdown without finishing the previous call.".into()))
614+
Err(OTelSdkError::InternalFailure("ForceFlush cannot be performed as Control channel is full. This can occur if user repeatedly calls force_flush/shutdown without finishing the previous call.".into()))
615615
}
616616
Err(std::sync::mpsc::TrySendError::Disconnected(_)) => {
617617
// Given background thread is the only receiver, and it's

0 commit comments

Comments
 (0)