We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c114b64 commit a365bb2Copy full SHA for a365bb2
changes/3679.fix.md
@@ -0,0 +1 @@
1
+Increase Backend.AI Kernel's app startup timeout
src/ai/backend/kernel/base.py
@@ -862,7 +862,7 @@ async def _start_service(
862
self.services_running[service_info["name"]] = proc
863
asyncio.create_task(self._wait_service_proc(service_info["name"], proc))
864
if not do_not_wait:
865
- async with asyncio.timeout(5.0):
+ async with asyncio.timeout(30.0):
866
await wait_local_port_open(service_info["port"])
867
log.info(
868
"Service {} has started (pid: {}, port: {})",
0 commit comments