[asterisk-commits] mjordan: branch 1.8 r375450 - /branches/1.8/apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 29 21:07:36 CDT 2012
Author: mjordan
Date: Mon Oct 29 21:07:32 2012
New Revision: 375450
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=375450
Log:
Ensure that the Queue application tracks busy members in off nominal situations
There are a few code paths where the Queue application fails to count a paused
or in use queue member as being 'busy'. This can cause callers to get stuck
in the Queue until a paused agent unpauses themselves.
(closes issue ASTERISK-20623)
Reported by: Bryan Walters
patches:
app_queue.patch uploaded by Bryan Walters (license 5851)
Modified:
branches/1.8/apps/app_queue.c
Modified: branches/1.8/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_queue.c?view=diff&rev=375450&r1=375449&r2=375450
==============================================================================
--- branches/1.8/apps/app_queue.c (original)
+++ branches/1.8/apps/app_queue.c Mon Oct 29 21:07:32 2012
@@ -3118,6 +3118,7 @@
if (qe->chan->cdr)
ast_cdr_busy(qe->chan->cdr);
tmp->stillgoing = 0;
+ (*busies)++;
return 0;
}
@@ -3126,6 +3127,7 @@
if (qe->chan->cdr)
ast_cdr_busy(qe->chan->cdr);
tmp->stillgoing = 0;
+ (*busies)++;
return 0;
}
if (use_weight && compare_weight(qe->parent,tmp->member)) {
More information about the asterisk-commits
mailing list