Suppress 500 during deployment warm-up period (#810)
This commit is contained in:
parent
82d6661dd9
commit
9f904a4ad6
2 changed files with 3 additions and 2 deletions
|
|
@ -170,7 +170,8 @@ async def _stream_deployment_logs_to_deque(
|
|||
if state["status"] not in ["pending", "unknown", "updating"]:
|
||||
break
|
||||
except httpx.HTTPStatusError as e:
|
||||
if debug:
|
||||
# 500s are expected during the deployment warm-up period
|
||||
if debug and e.response.status_code != 500:
|
||||
console.print(f"Failed to stream logs: {e.response.status_code}", style="dim red")
|
||||
await asyncio.sleep(3)
|
||||
except Exception as e:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "arcade-mcp"
|
||||
version = "1.13.1"
|
||||
version = "1.13.2"
|
||||
description = "Arcade.dev - Tool Calling platform for Agents"
|
||||
readme = "README.md"
|
||||
license = { file = "LICENSE" }
|
||||
|
|
|
|||
Loading…
Reference in a new issue