From d0d0e43032307c2d26feba38cf3df5b68f39b109 Mon Sep 17 00:00:00 2001 From: S1ro1 Date: Wed, 17 Dec 2025 02:48:24 +0100 Subject: [PATCH] Feat: add longer polling --- src/libkernelbot/launchers/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libkernelbot/launchers/github.py b/src/libkernelbot/launchers/github.py index d457d244..5836549f 100644 --- a/src/libkernelbot/launchers/github.py +++ b/src/libkernelbot/launchers/github.py @@ -344,7 +344,7 @@ async def wait_for_completion( return await callback(self) - await asyncio.sleep(15) # Yield control while waiting + await asyncio.sleep(30) # Yield control while waiting except TimeoutError: raise # Re-raise the specific TimeoutError from the timeout block except Exception as e: