diff --git a/api/routes/telephony.py b/api/routes/telephony.py index 0614d08..2ab12bf 100644 --- a/api/routes/telephony.py +++ b/api/routes/telephony.py @@ -809,6 +809,9 @@ async def _process_status_update(workflow_run_id: int, status: StatusCallbackReq state=WorkflowRunState.COMPLETED.value, gathered_context={"call_tags": call_tags}, ) + elif status.status in ["in-progress", "initiated", "ringing"]: + # No Op + pass else: logger.warning( f"[run {workflow_run_id}] Unexpected status update: {status.status}" diff --git a/pipecat b/pipecat index 18975f7..efcd341 160000 --- a/pipecat +++ b/pipecat @@ -1 +1 @@ -Subproject commit 18975f78b982cbace33d76eda0759eddb85eea5a +Subproject commit efcd34192ce28530053e90aed67890644c71f1e1