[svn-commits] pabelanger: branch 12 r414195 - /branches/12/res/res_stasis_answer.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon May 19 14:50:53 CDT 2014


Author: pabelanger
Date: Mon May 19 14:50:44 2014
New Revision: 414195

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=414195
Log:
Replace __ast_answer with ast_raw_answer in app_control_answer

While load testing an ARI application, I noticed asterisk was returning HTTP 500
internal server errors on channels/:id/answer.  After talking to #asterisk-dev,
the issue appeared to be a lack of media flowing after __ast_answer() was
called.  So now, we call ast_raw_answer instead and no longer wait for media.

ASTERISK-23758 #close
Review: https://reviewboard.asterisk.org/r/3549/


Modified:
    branches/12/res/res_stasis_answer.c

Modified: branches/12/res/res_stasis_answer.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/res/res_stasis_answer.c?view=diff&rev=414195&r1=414194&r2=414195
==============================================================================
--- branches/12/res/res_stasis_answer.c (original)
+++ branches/12/res/res_stasis_answer.c Mon May 19 14:50:44 2014
@@ -38,10 +38,9 @@
 static int app_control_answer(struct stasis_app_control *control,
 	struct ast_channel *chan, void *data)
 {
-	const int delay = 0;
 	ast_debug(3, "%s: Answering\n",
 		stasis_app_control_get_channel_id(control));
-	return __ast_answer(chan, delay);
+	return ast_raw_answer(chan);
 }
 
 int stasis_app_control_answer(struct stasis_app_control *control)




More information about the svn-commits mailing list