[asterisk-commits] juggie: branch juggie/NoLossCDR r83398 - in /team/juggie/NoLossCDR: ./ apps/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Sep 21 01:01:16 CDT 2007
Author: juggie
Date: Fri Sep 21 01:01:16 2007
New Revision: 83398
URL: http://svn.digium.com/view/asterisk?view=rev&rev=83398
Log:
Merged revisions 83397 via svnmerge from
https://origsvn.digium.com/svn/asterisk/team/group/CDRfix5
........
r83397 | murf | 2007-09-21 01:42:54 -0400 (Fri, 21 Sep 2007) | 1 line
For the moment, let's just ignore the cdr manipulation in the app_queue stuff, and come back to it later...
........
Modified:
team/juggie/NoLossCDR/ (props changed)
team/juggie/NoLossCDR/apps/app_queue.c
Propchange: team/juggie/NoLossCDR/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Fri Sep 21 01:01:16 2007
@@ -1,1 +1,1 @@
-/team/group/CDRfix5:1-83395
+/team/group/CDRfix5:1-83397
Modified: team/juggie/NoLossCDR/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/team/juggie/NoLossCDR/apps/app_queue.c?view=diff&rev=83398&r1=83397&r2=83398
==============================================================================
--- team/juggie/NoLossCDR/apps/app_queue.c (original)
+++ team/juggie/NoLossCDR/apps/app_queue.c Fri Sep 21 01:01:16 2007
@@ -2913,11 +2913,11 @@
ast_debug(1, "Arguments being passed to MixMonitor: %s\n", mixmonargs);
/* We purposely lock the CDR so that pbx_exec does not update the application data */
- if (qe->chan->cdr)
- ast_set_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED);
+ /* if (qe->chan->cdr)
+ ast_set_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED); commenting this out until further investigation */
ret = pbx_exec(qe->chan, mixmonapp, mixmonargs);
- if (qe->chan->cdr)
- ast_clear_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED);
+ /* if (qe->chan->cdr)
+ ast_clear_flag(qe->chan->cdr, AST_CDR_FLAG_LOCKED); */
} else
ast_log(LOG_WARNING, "Asked to run MixMonitor on this call, but cannot find the MixMonitor app!\n");
More information about the asterisk-commits
mailing list