[Misc] Don't log shm dequeue delay warning on worker side (#25720)

Signed-off-by: Nick Hill <nhill@redhat.com>
This commit is contained in:
Nick Hill
2025-09-25 18:08:30 -07:00
committed by GitHub
parent 9fe4c2bdb9
commit 8b77328ffe
2 changed files with 32 additions and 32 deletions

View File

@@ -653,7 +653,7 @@ class WorkerProc:
"""Main busy loop for Multiprocessing Workers"""
while True:
method, args, kwargs, output_rank = self.rpc_broadcast_mq.dequeue(
cancel=cancel)
cancel=cancel, indefinite=True)
try:
if isinstance(method, str):
func = getattr(self.worker, method)