Merge "app_queue: Member stuck as pending after forwarding previous call from queue" into 13

changes/84/5284/1
Joshua Colp 10 years ago committed by Gerrit Code Review
commit f762dfaf2a

@ -5510,6 +5510,13 @@ static int update_queue(struct call_queue *q, struct member *member, int callcom
member->membername, (long)member->lastcall);
ao2_unlock(q);
}
/* Member might never experience any direct status change (local
* channel with forwarding in particular). If that's the case,
* this is the last chance to remove it from pending or subsequent
* calls will not occur.
*/
pending_members_remove(member);
ao2_lock(q);
q->callscompleted++;
if (callcompletedinsl) {

Loading…
Cancel
Save