fix webhook successful status code range (#2486)
This commit is contained in:
@@ -2139,7 +2139,7 @@ class ForgeAgent:
|
|||||||
resp = await client.post(
|
resp = await client.post(
|
||||||
task.webhook_callback_url, data=payload, headers=headers, timeout=httpx.Timeout(30.0)
|
task.webhook_callback_url, data=payload, headers=headers, timeout=httpx.Timeout(30.0)
|
||||||
)
|
)
|
||||||
if resp.status_code == 200:
|
if resp.status_code >= 200 and resp.status_code < 300:
|
||||||
LOG.info(
|
LOG.info(
|
||||||
"Webhook sent successfully",
|
"Webhook sent successfully",
|
||||||
task_id=task.task_id,
|
task_id=task.task_id,
|
||||||
|
|||||||
@@ -1268,7 +1268,7 @@ class WorkflowService:
|
|||||||
resp = await client.post(
|
resp = await client.post(
|
||||||
url=workflow_run.webhook_callback_url, data=payload, headers=headers, timeout=httpx.Timeout(30.0)
|
url=workflow_run.webhook_callback_url, data=payload, headers=headers, timeout=httpx.Timeout(30.0)
|
||||||
)
|
)
|
||||||
if resp.status_code == 200:
|
if resp.status_code >= 200 and resp.status_code < 300:
|
||||||
LOG.info(
|
LOG.info(
|
||||||
"Webhook sent successfully",
|
"Webhook sent successfully",
|
||||||
workflow_id=workflow_id,
|
workflow_id=workflow_id,
|
||||||
|
|||||||
@@ -1678,7 +1678,7 @@ async def send_task_v2_webhook(task_v2: TaskV2) -> None:
|
|||||||
resp = await httpx.AsyncClient().post(
|
resp = await httpx.AsyncClient().post(
|
||||||
task_v2.webhook_callback_url, data=payload, headers=headers, timeout=httpx.Timeout(30.0)
|
task_v2.webhook_callback_url, data=payload, headers=headers, timeout=httpx.Timeout(30.0)
|
||||||
)
|
)
|
||||||
if resp.status_code == 200:
|
if resp.status_code >= 200 and resp.status_code < 300:
|
||||||
LOG.info(
|
LOG.info(
|
||||||
"Task v2 webhook sent successfully",
|
"Task v2 webhook sent successfully",
|
||||||
task_v2_id=task_v2.observer_cruise_id,
|
task_v2_id=task_v2.observer_cruise_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user