Setup: voice agents on livekit-agents 1.4.6 / livekit 1.1.2 / livekit-api 1.0.7 / livekit-protocol 1.1.1 (Python 3.11), outbound SIP telephony, LiveKit Cloud (project p_3tqm7ro6kbs). Each call = one agent worker process; the worker connects to the room via ctx.connect() right after the job starts.
What we saw: within a ~19-second window, 5 near-simultaneous outbound calls (across 4 different worker processes) all logged, at room-join time:
livekit_api::signal_client:287 - signal connection failed on v0 path: Timeout("signal connection timed out")
In every case the SDK then recovered — Connected to LiveKit followed ~0.3–0.5s later for 4 of the 5 calls, and those calls proceeded normally (voicemail detection / conversation, clean shutdown). So the warning was non-fatal.
But one call was worse: room RM_qxjzLwVsFw2F logged the v0 timeout twice (13:28:56 and 13:29:01 UTC) plus:
The room connection was not established within 10 seconds after calling job_entry.
This might mean that job_ctx.connect() was never invoked, or that no AgentSession was started ...
and only connected ~5 seconds after the first attempt. Our audio egress (recording) consequently started ~5s late on that call.
Affected rooms (project p_3tqm7ro6kbs), all 2026-06-08:
| Room ID | Job ID | First v0 timeout (UTC) | Outcome |
|---|---|---|---|
RM_kBfppXUVVE7Q |
AJ_PSNKRFeqwpwx |
13:28:42.804 | recovered ~0.5s → completed normally (~94s) |
RM_w8sdJUdCogke |
AJ_iEDtHdH5ioc8 |
13:28:48.895 | recovered ~0.5s → voicemail → clean shutdown |
RM_DiFYT4TAudNJ |
AJ_y7VquhMGuZqp |
13:28:49.361 | agent connected; remote SIP participant never joined (see note) |
RM_CNnwLf7tPqR3 |
AJ_eTmKwpmqWu85 |
13:28:55.834 | recovered ~0.5s → voicemail → clean shutdown |
RM_qxjzLwVsFw2F |
AJ_VyLSqagwr8e6 |
13:28:56.081 | two v0 timeouts + 10s room-connection warning → connected ~5s late |
Please help investigate this

