Skip to content

Commit a365bb2

Browse files
authored
fix(BA-725): Increase Backend.AI Kernel's app startup timeout (#3672) (#3679)
1 parent c114b64 commit a365bb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changes/3679.fix.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Increase Backend.AI Kernel's app startup timeout

src/ai/backend/kernel/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ async def _start_service(
862862
self.services_running[service_info["name"]] = proc
863863
asyncio.create_task(self._wait_service_proc(service_info["name"], proc))
864864
if not do_not_wait:
865-
async with asyncio.timeout(5.0):
865+
async with asyncio.timeout(30.0):
866866
await wait_local_port_open(service_info["port"])
867867
log.info(
868868
"Service {} has started (pid: {}, port: {})",

0 commit comments

Comments
 (0)