Jonas Kellens
2012-Dec-08 11:55 UTC
[asterisk-users] Queue joinempty, even after AddQueueMember
Hello, I add a member to a queue with AddQueueMember, but the Queue still indicates "joinempty" : Add member to queue : /-- Executing [queueadd at sub-GetParams:2] AddQueueMember("SIP/sip17-00005c1e", "myqueue11,member3") in new stack -- Executing [queueadd at sub-GetParams:3] NoOp("SIP/sip17-00005c1e", "AQMSTATUS = ADDED") in new stack/ ... but JOINEMPTY when entering the Call Queue : /-- Executing [queue at pbx-routing:4] Queue("SIP/SipIncoming-00005da9", "myqueue11,,,,60") in new stack -- Executing [queue at pbx-routing:5] NoOp("SIP/SipIncoming-00005da9", "queuestatus == JOINEMPTY") in new stack/ How is this possible ? Kind regards, Jonas. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20121208/f19b2c6c/attachment.htm>
Jonathan Rose
2012-Dec-09 08:15 UTC
[asterisk-users] Queue joinempty, even after AddQueueMember
I was poking around with the Add/Remove QueueMember code a while back. From the sound of what you are saying I might have just missed something critical. for your case. It'd be good to know what version you are using so that I can verify whether or not my changes could have affected you. ----- Original Message ----- From: "Jonas Kellens" <jonas.kellens at telenet.be> To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users at lists.digium.com> Sent: Saturday, December 8, 2012 5:55:39 AM Subject: [asterisk-users] Queue joinempty, even after AddQueueMember Hello, I add a member to a queue with AddQueueMember, but the Queue still indicates "joinempty" : Add member to queue : -- Executing [queueadd at sub-GetParams:2] AddQueueMember("SIP/sip17-00005c1e", "myqueue11,member3") in new stack -- Executing [queueadd at sub-GetParams:3] NoOp("SIP/sip17-00005c1e", "AQMSTATUS = ADDED") in new stack ... but JOINEMPTY when entering the Call Queue : -- Executing [queue at pbx-routing:4] Queue("SIP/SipIncoming-00005da9", "myqueue11,,,,60") in new stack -- Executing [queue at pbx-routing:5] NoOp("SIP/SipIncoming-00005da9", "queuestatus == JOINEMPTY") in new stack How is this possible ? Kind regards, Jonas. -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Jonas Kellens
2012-Dec-09 19:32 UTC
[asterisk-users] Queue joinempty, even after AddQueueMember
On 09-12-12 20:10, Joshua Colp wrote:> Jonas Kellens wrote: >> On 09-12-12 19:49, Joshua Colp wrote: >>> As well - if the log you provided has not been altered then you are >>> attempting to add an interface "member3" to the queue. While this will >>> succeed it is ultimately not a valid interface and would not be >>> considered as available. This would explain why it does not work. >> >> Hello, > > Hola, > >> what is then a correct interface ? "SIP/member3" maybe is more correct ? > > That is correct. That type of string is what interface refers to in > the AddQueueMember documentation. SIP/member3, IAX2/joe, etc. > > Cheers, >Hello, I will try that. It might be the solution... Jonas.