[Home]

Summary:ASTERISK-28601: bridge: BRIDGEPVTCALLID and BRIDGEPEER emtpy after Dial(SIP/...)
Reporter:Adrien Martin (AdrienMartin)Labels:
Date Opened:2019-10-24 05:19:35Date Closed:
Priority:MinorRegression?Yes
Status:Open/NewComponents:Core/Bridging
Versions:13.29.1 16.6.1 Frequency of
Occurrence
Constant
Related
Issues:
is related toASTERISK-25600 bridging: Inconsistency in BRIDGEPEER
Environment:Attachments:
Description:After using application Dial in dialplan (or in AGI) on a SIP channel the variables BRIDGEPVTCALLID and BRIDGEPEER are empty.

These variables were not empty in version 11.11.

It can be reproduced with:
{code}
exten => _[0-9+].,1,NoOp(Test)
 same => n,NoOp(Inbound Call-ID: ${SIPCALLID})
 same => n,Dial(SIP/some-peer/1234,,g)
 same => n,NoOp(Outbound Call-ID: ${BRIDGEPVTCALLID})
 same => n,NoOp(BRIDGEPEER: ${BRIDGEPEER})
{code}
Comments:By: Asterisk Team (asteriskteam) 2019-10-24 05:19:36.361-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].

Please note that once your issue enters an open state it has been accepted. As Asterisk is an open source project there is no guarantee or timeframe on when your issue will be looked into. If you need expedient resolution you will need to find and pay a suitable developer. Asking for an update on your issue will not yield any progress on it and will not result in a response. All updates are posted to the issue when they occur.

By: Richard Mudgett (rmudgett) 2019-11-04 09:14:57.529-0600

I don't think this is a bug.  IIRC, since v12, BRIDGEPEER is only valid *while* the channel is in a bridge not after.  I would expect similar for BRIDGEPVTCALLID.

By: Adrien Martin (AdrienMartin) 2019-11-04 09:59:18.899-0600

Thanks for your reply.

Would this mean there is no longer a direct way to get these variables in dialplan/AGI?