Displaying 1 result from an estimated 1 matches for "please_wait_while".
2003 Oct 23
1
agi script forcing asterisk reload
...es an asterisk reload with 'system("asterisk -rx reload")';
After the reload I use set_context, set_extension and set_priority to tell asterisk where I want it to carry on from which is line 2 of the following.
exten => *80,1,AGI(bla.pl, ${EXTEN})
exten => *80,2,Background(please_wait_while)
exten => *80,3,Hangup
This works some of the time. However at other times the sip channel remains active and somehow asterisk doesn't find its way to line 2 after the reload (although the reload still happens). So I don't get by Background or Hangup being executed some of the time.
Ca...