chore: fix ARI documentation

This commit is contained in:
Abhishek Kumar 2026-05-13 21:53:18 +05:30
parent ebeffdbc40
commit b728cc4922
8 changed files with 7 additions and 40 deletions

View file

@ -656,9 +656,7 @@ class ARIConnection:
# pending bridge entry regardless of ordering.
await self._mark_ext_channel(ext_channel_id)
await self._set_channel_run(ext_channel_id, workflow_run_id)
await self._set_pending_bridge(
ext_channel_id, channel_id, workflow_run_id
)
await self._set_pending_bridge(ext_channel_id, channel_id, workflow_run_id)
await db_client.update_workflow_run(
run_id=int(workflow_run_id),
gathered_context={"ext_channel_id": ext_channel_id},

View file

@ -36,12 +36,6 @@ class CustomHeaderDTO(BaseModel):
value: str
class RetryConfigDTO(BaseModel):
enabled: bool = False
max_retries: int = 3
retry_delay_seconds: int = 5
# ─────────────────────────────────────────────────────────────────────────
# Per-type node data classes.
#
@ -130,7 +124,6 @@ class WebhookNodeData(_NodeDataBase):
credential_uuid: Optional[str] = None
custom_headers: Optional[list[CustomHeaderDTO]] = None
payload_template: Optional[dict] = None
retry_config: Optional[RetryConfigDTO] = None
class QANodeData(_NodeDataBase):

View file

@ -108,15 +108,6 @@ SPEC = NodeSpec(
"transcript_url": "{{transcript_url}}",
},
),
PropertySpec(
name="retry_config",
type=PropertyType.json,
display_name="Retry Configuration",
description=(
"Optional retry settings: `enabled` (bool), `max_retries` "
"(int), `retry_delay_seconds` (int)."
),
),
],
examples=[
NodeExample(