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
2 changes: 1 addition & 1 deletion src/kernelbot/api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ async def run_submission_async(
try:
await asyncio.wait_for(
asyncio.to_thread(enforce_submission_precheck, req.code, req.file_name),
timeout=5.0,
timeout=20.0,
)
except asyncio.TimeoutError as e:
raise HTTPException(status_code=504, detail="KernelGuard pre-check timed out") from e
Expand Down
Loading