Skip to content

Commit

Permalink
support hangup without retry with pjsua
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron van Meerten committed Mar 22, 2017
1 parent 453c3d8 commit d40729f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions jibri-xmpp-client/jibrixmppclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,9 @@ def report_jibri_error(self, error):
elif error == 'pjsua_busy':
error_text='Gateway Error: pjsua returned busy'
jicofo_retry = False
elif error == 'pjsua_hangup':
error_text='Gateway Error: pjsua returned hangup'
jicofo_retry = False
elif error == 'pjsua_startup_error':
error_text='Gateway Startup Error: pjsua startup failed'
jicofo_retry = False
Expand Down

0 comments on commit d40729f

Please sign in to comment.