[asterisk-commits] mjordan: trunk r399368 - in /trunk: ./ bridges/bridge_softmix.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 18 12:21:47 CDT 2013
Author: mjordan
Date: Wed Sep 18 12:21:39 2013
New Revision: 399368
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=399368
Log:
Add a WARNING in bridge_softmix when a timing module isn't loaded
If bridge_softmix fails to be created because no timing source is present in
Asterisk, this will currently fail gracefully but with (most likely) a generic
error message by whatever module tried to create the softmix bridge. This
patch adds a more explicit warning so you can actually diagnose and fix the
problem.
Review: https://reviewboard.asterisk.org/r/2857/
........
Merged revisions 399353 from http://svn.asterisk.org/svn/asterisk/branches/11
........
Merged revisions 399365 from http://svn.asterisk.org/svn/asterisk/branches/12
Modified:
trunk/ (props changed)
trunk/bridges/bridge_softmix.c
Propchange: trunk/
------------------------------------------------------------------------------
--- branch-12-merged (original)
+++ branch-12-merged Wed Sep 18 12:21:39 2013
@@ -1,1 +1,1 @@
-/branches/12:1-398558,398560-398577,398579-399100,399136,399146,399160,399197,399207,399225,399237,399247,399257,399268,399283,399294,399339
+/branches/12:1-398558,398560-398577,398579-399100,399136,399146,399160,399197,399207,399225,399237,399247,399257,399268,399283,399294,399339,399365
Modified: trunk/bridges/bridge_softmix.c
URL: http://svnview.digium.com/svn/asterisk/trunk/bridges/bridge_softmix.c?view=diff&rev=399368&r1=399367&r2=399368
==============================================================================
--- trunk/bridges/bridge_softmix.c (original)
+++ trunk/bridges/bridge_softmix.c Wed Sep 18 12:21:39 2013
@@ -1044,6 +1044,7 @@
ast_mutex_init(&softmix_data->lock);
softmix_data->timer = ast_timer_open();
if (!softmix_data->timer) {
+ ast_log(AST_LOG_WARNING, "Failed to open timer for softmix bridge\n");
softmix_bridge_data_destroy(softmix_data);
return -1;
}
More information about the asterisk-commits
mailing list