mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 07:18:15 +00:00
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/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@399353 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -313,6 +313,7 @@ static int softmix_bridge_create(struct ast_bridge *bridge)
|
||||
return -1;
|
||||
}
|
||||
if (!(softmix_data->timer = ast_timer_open())) {
|
||||
ast_log(AST_LOG_WARNING, "Failed to open timer for softmix bridge\n");
|
||||
ao2_ref(softmix_data, -1);
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user