From 8d929d7afd7a7fbd66077280bc4542675593d74b Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Mon, 13 Aug 2007 15:39:48 +0000 Subject: [PATCH] Allow non-realtime queues to have realtime members (issue #10424, reported and patched by irroot) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79238 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- CHANGES | 1 + apps/app_queue.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index 35588656e6..25ad24c1e1 100644 --- a/CHANGES +++ b/CHANGES @@ -144,6 +144,7 @@ Queue changes position changes frequently. * Added additional information to EXITWITHTIMEOUT and EXITWITHKEY events in the queue log. + * Added ability for non-realtime queues to have realtime members MeetMe Changes -------------- diff --git a/apps/app_queue.c b/apps/app_queue.c index 724f66c54b..d571dc3544 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -410,6 +410,7 @@ struct call_queue { static AST_LIST_HEAD_STATIC(queues, call_queue); +static void update_realtime_members(struct call_queue *q); static int set_member_paused(const char *queuename, const char *interface, int paused); static void set_queue_result(struct ast_channel *chan, enum queue_result res) @@ -1254,6 +1255,8 @@ static struct call_queue *load_realtime_queue(const char *queuename) ast_variables_destroy(queue_vars); AST_LIST_UNLOCK(&queues); + } else { + update_realtime_members(q); } return q; }