task: increase heartbeat monitoring to 5 seconds

This commit is contained in:
Aleix Conchillo Flaqué
2025-01-17 10:04:05 -08:00
parent f22a00570d
commit da0c4cfd99

View File

@@ -350,7 +350,7 @@ class PipelineTask:
takes for the heartbeat frame to traverse all the pipeline.
"""
wait_time = HEARTBEAT_SECONDS * 2
wait_time = HEARTBEAT_SECONDS * 5
while True:
try:
frame = await asyncio.wait_for(self._heartbeat_queue.get(), timeout=wait_time)