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
@@ -627,10 +627,12 @@ class TKafkaConnection: public TActorBootstrapped<TKafkaConnection>, public TNet
627
627
case INFLIGTH_CHECK:
628
628
if (!Context->Authenticated() && !PendingRequestsQueue.empty()) {
629
629
// Allow only one message to be processed at a time for non-authenticated users
630
+
KAFKA_LOG_ERROR("DoRead: failed inflight check: there are " << PendingRequestsQueue.size() << " pending requests and user is not authnicated. Only one paraller request is allowed for a non-authenticated user.");
630
631
returntrue;
631
632
}
632
633
if (InflightSize + Request->ExpectedSize > Context->Config.GetMaxInflightSize()) {
633
634
// We limit the size of processed messages so as not to exceed the size of available memory
0 commit comments