[Home]

Summary:ASTERISK-27837: GROUP_COUNT not working as expected
Reporter:David Glasgow (Unison)Labels:
Date Opened:2018-05-03 19:41:06Date Closed:2018-05-05 17:17:33
Priority:MajorRegression?
Status:Closed/CompleteComponents:Core/General
Versions:13.19.1 Frequency of
Occurrence
Constant
Related
Issues:
Environment:Attachments:
Description:I don't believe that GROUP_COUNT is working correctly in 13.19.1.

I have the tested the following:
{noformat}
[from-trunk-sip]
exten => _.,1,Set(GROUP()=OUT_6)
exten => _.,n,NoOp(>>>>>>>>>>>>>>>>>>>> Trunk Group : ${GROUP()})
exten => _.,n,NoOp(>>>>>>>>>>>>>>>>>>>> Number of Calls on Trunk: ${GROUP_COUNT()})
{noformat}
Using external lines, I place three calls concurrently to the Asterisk platform…
{noformat}
asterisk -rvvvvvvvvvvvvvvvvvvvvv | grep ‘>>>>>>>>>>>>>>>>>>’

NoOp("SIP/66555555-000094fb", ">>>>>>>>>>>>>>>>>>>> Trunk Group : OUT_6") in new stack
NoOp("SIP/66555555-000094fb", ">>>>>>>>>>>>>>>>>>>> Number of Calls on Trunk: 1") in new stack
NoOp("SIP/66555555-000094fc", ">>>>>>>>>>>>>>>>>>>> Trunk Group : OUT_6") in new stack
NoOp("SIP/66555555-000094fc", ">>>>>>>>>>>>>>>>>>>> Number of Calls on Trunk: 1") in new stack
NoOp("SIP/66555555-000094fd", ">>>>>>>>>>>>>>>>>>>> Trunk Group : OUT_6") in new stack
NoOp("SIP/66555555-000094fd", ">>>>>>>>>>>>>>>>>>>> Number of Calls on Trunk: 1") in new stack
{noformat}
I was expecting the Number of Calls on Trunk to increase with each additional, concurrent call…

T

Comments:By: Asterisk Team (asteriskteam) 2018-05-03 19:41:07.468-0500

Thanks for creating a report! The issue has entered the triage process. That means the issue will wait in this status until a Bug Marshal has an opportunity to review the issue. Once the issue has been reviewed you will receive comments regarding the next steps towards resolution.

A good first step is for you to review the [Asterisk Issue Guidelines|https://wiki.asterisk.org/wiki/display/AST/Asterisk+Issue+Guidelines] if you haven't already. The guidelines detail what is expected from an Asterisk issue report.

Then, if you are submitting a patch, please review the [Patch Contribution Process|https://wiki.asterisk.org/wiki/display/AST/Patch+Contribution+Process].

By: David Glasgow (Unison) 2018-05-05 17:17:33.949-0500

Issue is within a custom context...  Sorry.