]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
app_queue: update RT members when the 1st call joins a queue with no agents 93/1693/2
authorCarlos Oliva <carlos.oliva@invoxcontact.com>
Mon, 14 Dec 2015 12:26:35 +0000 (13:26 +0100)
committerCarlos Oliva <carlos.oliva@invoxcontact.com>
Mon, 14 Dec 2015 16:21:27 +0000 (17:21 +0100)
If a call enters on a queue and the members on that queue are updated in
realtime (ex: using mysql inserting a new agent) the queue members are
never refreshed and the call will stay in the queue until other event occurs.
This happens only if this is the first call of the queue and there is no
agents servicing.
This patch prevent this issue, ensuring realtime members are updated if
there is one call in the queue and no available agents

ASTERISK-25442 #close

Change-Id: If1e036d013a5c1d8b0bf60d71d48fe98694a8682

apps/app_queue.c

index a2ed2c924af3f2f32817d5cb9dd04c23ca0ed744..416ebff4ae174924ef9e07e24fd843c607ce3337 100644 (file)
@@ -5214,6 +5214,11 @@ static int is_our_turn(struct queue_ent *qe)
                res = 0;
        }
 
+       /* Update realtime members if this is the first call and number of avalable members is 0 */
+       if (avl == 0 && qe->pos == 1) {
+               update_realtime_members(qe->parent);
+       }
+
        return res;
 }