Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtimes/aleph-debian-12-python/init1.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,9 @@ async def run_executable_http(scope: dict) -> tuple[dict, dict, str, bytes | Non
tries += 1
headers, body = await make_request(session, scope)
except aiohttp.ClientConnectorError:
if tries > 20:
if tries > 10:
headers, body = show_loading()
await asyncio.sleep(0.05)
await asyncio.sleep(0.5)

output = "" # Process stdout is not captured per request
output_data = None
Expand Down