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
// This logic is to avoid the loop of loading tasks from max virtual queue -> pending task count exceeds critical task count -> unload tasks from max virtual queue
360
+
// for non-root virtual queue, we know that maxTaskCout < ciriticalTaskCount
361
+
remainingSize:=maxTaskCount-pendingTaskCount
362
+
ifremainingSize<=0 {
363
+
remainingSize=1
364
+
q.logger.Error("unexpected error, virtual queue is not paused when pending task count exceeds max task cout limit", tag.PendingTaskCount(pendingTaskCount), tag.MaxTaskCount(maxTaskCount))
0 commit comments