You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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."
461
461
);
462
-
Err(ShutdownError::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()))
462
+
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()))
463
463
}
464
464
Err(mpsc::TrySendError::Disconnected(_)) => {
465
465
// Given background thread is the only receiver, and it's
@@ -469,7 +469,7 @@ impl LogProcessor for BatchLogProcessor {
469
469
message = "Shutdown is being invoked more than once. This is noop, but indicates a potential issue in the application's lifecycle management."
0 commit comments