]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Make queue log indicate if ADDMEMBER is paused for AMI and realtime.
authorRichard Mudgett <rmudgett@digium.com>
Mon, 14 Nov 2011 22:19:18 +0000 (22:19 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 14 Nov 2011 22:19:18 +0000 (22:19 +0000)
* Add parameter to queue log ADDMEMBER to indicate if the member is
paused.

(closes issue ASTERISK-18645)
Reported by: garlew
Patches:
      paused.diff (License #5337) patch uploaded by garlew
Tested by: rmudgett, garlew

Review: https://reviewboard.asterisk.org/r/1469/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@345285 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_queue.c

index 5cb1e1c608dae001de8e21e7553f9de53f977b90..1349d04b2f484d7797afb407e7d9e26652b9b4f2 100644 (file)
@@ -2126,7 +2126,7 @@ static void rt_handle_member_record(struct call_queue *q, char *interface, const
                        m->dead = 0;
                        m->realtime = 1;
                        ast_copy_string(m->rt_uniqueid, rt_uniqueid, sizeof(m->rt_uniqueid));
-                       ast_queue_log(q->name, "REALTIME", m->interface, "ADDMEMBER", "%s", "");
+                       ast_queue_log(q->name, "REALTIME", m->interface, "ADDMEMBER", "%s", paused ? "PAUSED" : "");
                        ao2_link(q->members, m);
                        ao2_ref(m, -1);
                        m = NULL;
@@ -7312,7 +7312,7 @@ static int manager_add_queue_member(struct mansession *s, const struct message *
 
        switch (add_to_queue(queuename, interface, membername, penalty, paused, queue_persistent_members, state_interface)) {
        case RES_OKAY:
-               ast_queue_log(queuename, "MANAGER", interface, "ADDMEMBER", "%s", "");
+               ast_queue_log(queuename, "MANAGER", interface, "ADDMEMBER", "%s", paused ? "PAUSED" : "");
                astman_send_ack(s, m, "Added interface to queue");
                break;
        case RES_EXISTS: