summaryrefslogtreecommitdiff
path: root/res/res_ari_channels.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2015-02-21 20:48:17 +0000
committerJoshua Colp <jcolp@digium.com>2015-02-21 20:48:17 +0000
commitbedf51b2cebab8284aafa20237c883e9db6f6bb2 (patch)
treea57047b299e363a1bb5ad777437c698fdf1cc2e7 /res/res_ari_channels.c
parent87b7060f3657f00e32d8da3673fa407157e5eebf (diff)
res_ari_channels: Return a 404 response when a requested channel variable does not exist.
This change makes it so that if a channel variable is requested and it does not exist a 404 response will be returned instead of an allocation failed response. This makes it easier to debug and figure out what is going on for a user. ASTERISK-24677 #close Reported by: Joshua Colp ........ Merged revisions 432154 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@432155 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_ari_channels.c')
-rw-r--r--res/res_ari_channels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_ari_channels.c b/res/res_ari_channels.c
index a088705ad..0d1334eb0 100644
--- a/res/res_ari_channels.c
+++ b/res/res_ari_channels.c
@@ -2173,7 +2173,7 @@ static void ast_ari_channels_get_channel_var_cb(
case 500: /* Internal Server Error */
case 501: /* Not Implemented */
case 400: /* Missing variable parameter. */
- case 404: /* Channel not found */
+ case 404: /* Channel or variable not found */
case 409: /* Channel not in a Stasis application */
is_valid = 1;
break;