From d8a760307e43031033b5607264f7edd8ecfe73a4 Mon Sep 17 00:00:00 2001 From: Jonathan Rose Date: Fri, 25 Oct 2013 21:28:32 +0000 Subject: ARI recordings: Issue HTTP failures for recording requests with file conflicts If a file already exists in the recordings directory with the same name as what we would record, issue a 422 instead of relying on the internal failure and issuing success. (closes issue ASTERISK-22623) Reported by: Joshua Colp Review: https://reviewboard.asterisk.org/r/2922/ ........ Merged revisions 401973 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@401999 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/ari/resource_channels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res/ari/resource_channels.c') diff --git a/res/ari/resource_channels.c b/res/ari/resource_channels.c index bdca21cdb..b8d59d38b 100644 --- a/res/ari/resource_channels.c +++ b/res/ari/resource_channels.c @@ -420,7 +420,7 @@ void ast_ari_record_channel(struct ast_variable *headers, break; case EEXIST: ast_ari_response_error(response, 409, "Conflict", - "Recording '%s' already in progress", + "Recording '%s' already exists and can not be overwritten", args->name); break; case ENOMEM: -- cgit v1.2.3