Skip to content

Commit 0e1ecad

Browse files
authored
Update handle-events-with-event-processor.md
added createcallfailed and calldisconnected events
1 parent bd64d98 commit 0e1ecad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/communication-services/how-tos/call-automation/handle-events-with-event-processor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ CreateCallEventResult eventResult = await createCallResult.WaitForEventProcessor
6969
CallConnected returnedEvent = eventResult.SuccessResult;
7070
```
7171

72-
With EventProcessor, we can easily wait CallConnected event until the call is established. If the call was never established (that is, callee never picked up the phone), it throws Timeout Exception.
72+
With EventProcessor, we can easily wait CallConnected event until the call is established. If the call was never established (that is, callee never picked up the phone), it throws Timeout Exception. If the creation of the call otherwise fails, you will receive the `CreateCallFailed` and `CallDisconnected` events to further troubleshoot.
7373

7474
> [!NOTE]
7575
> If specific timeout was not given when waiting on EventProcessor, it will wait until its default timeout happens. The default timeout is 4 minutes.

0 commit comments

Comments
 (0)