[Home]

Summary:ASTERISK-05872: ChanIsAvail application always jumps
Reporter:jalsot (jalsot)Labels:
Date Opened:2005-12-20 01:44:16.000-0600Date Closed:2011-06-07 14:11:59
Priority:TrivialRegression?No
Status:Closed/CompleteComponents:Applications/app_chanisavail
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) app_chanisavail.txt
Description:ChanIsAvail application always jumps (independently of the 'j' option).

****** ADDITIONAL INFORMATION ******

...
if (priority_jump || option_priority_jumping) {
...
The default value of option_priority_jumping is 1, therefore it will jump independently of value pripority_jump.
The right line:
if (priority_jump && option_priority_jumping) {
Comments:By: Russell Bryant (russell) 2005-12-20 11:29:10.000-0600

Set "priorityjumping=no" in the [general] section of extensions.conf.

I sent an email to the asterisk-dev mailing list to get feedback on changing the default value to "off" in the trunk.  It was done this way for 1.2 intentionally for a smoother deprecation cycle.