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."
462
461
);
463
-
LogResult::Err(LogError::Other("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(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()))
464
463
}
465
464
Err(mpsc::TrySendError::Disconnected(_)) => {
466
465
// Given background thread is the only receiver, and it's
@@ -470,7 +469,7 @@ impl LogProcessor for BatchLogProcessor {
470
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