reduce watchdog interval to 5s (#2410)

This commit is contained in:
Byron Hsu
2024-12-08 21:17:31 -08:00
committed by GitHub
parent 6387098f5f
commit 27f7bed7a7

View File

@@ -572,7 +572,7 @@ class TokenizerManager:
async def sigterm_watchdog(self):
while not self.gracefully_exit:
await asyncio.sleep(60)
await asyncio.sleep(5)
# drain requests
while True: