[Asterisk-code-review] chan pjsip: Changed to continued after invalid media for pjs... (asterisk[13])
sungtae kim
asteriskteam at digium.com
Tue Feb 19 16:59:58 CST 2019
sungtae kim has uploaded this change for review. ( https://gerrit.asterisk.org/11012
Change subject: chan_pjsip: Changed to continued after invalid media for pjsip show channelstats
......................................................................
chan_pjsip: Changed to continued after invalid media for pjsip show channelstats
Currently, the pjsip show channelstats cli does not show channel's
stats after hits the invalid channel info. This makes hard to use
this cli. Changed to keep iterate after hits the invalid channel
info.
ASTERISK-28292
Change-Id: I3efdff1c9e1b1efd3c971fb82ae77aa133a6f43c
---
M channels/pjsip/cli_commands.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/12/11012/1
diff --git a/channels/pjsip/cli_commands.c b/channels/pjsip/cli_commands.c
index 1d2fbb9..514cf70 100644
--- a/channels/pjsip/cli_commands.c
+++ b/channels/pjsip/cli_commands.c
@@ -356,7 +356,7 @@
if (!media || !media->rtp) {
ast_str_append(&context->output_buffer, 0, " %s not valid\n", snapshot->name);
ao2_cleanup(channel);
- return -1;
+ return 0;
}
codec_in_use[0] = '\0';
--
To view, visit https://gerrit.asterisk.org/11012
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3efdff1c9e1b1efd3c971fb82ae77aa133a6f43c
Gerrit-Change-Number: 11012
Gerrit-PatchSet: 1
Gerrit-Owner: sungtae kim <pchero21 at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20190219/fbc32179/attachment.html>
More information about the asterisk-code-review
mailing list