[asterisk-commits] mjordan: branch 10 r375451 - in /branches/10: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 29 21:14:05 CDT 2012
Author: mjordan
Date: Mon Oct 29 21:14:01 2012
New Revision: 375451
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=375451
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)
........
Merged revisions 375450 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/10/ (props changed)
branches/10/apps/app_queue.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/apps/app_queue.c?view=diff&rev=375451&r1=375450&r2=375451
==============================================================================
--- branches/10/apps/app_queue.c (original)
+++ branches/10/apps/app_queue.c Mon Oct 29 21:14:01 2012
@@ -3164,6 +3164,7 @@
ast_cdr_busy(qe->chan->cdr);
}
tmp->stillgoing = 0;
+ (*busies)++;
return 0;
}
@@ -3194,6 +3195,7 @@
ast_cdr_busy(qe->chan->cdr);
}
tmp->stillgoing = 0;
+ (*busies)++;
return 0;
}
}
More information about the asterisk-commits
mailing list