From fdcec1ef40b1104eb58e22842abce2f1a46be2f2 Mon Sep 17 00:00:00 2001 From: Matthew Jordan Date: Thu, 16 Oct 2014 21:16:59 +0000 Subject: [PATCH] main/cdr: Use 'time' when rescheduling batched CDRs as opposed to 'size' When refactoring CDRs to use the configuration framework, a 'whoops' was introduced where the CDR batch size was used when rescheduling a batch, as opposed to the time duration. This patch corrects that obvious mistake. ASTERISK-24426 #close Reported by: Shane Blaser ........ Merged revisions 425735 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@425736 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/cdr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/cdr.c b/main/cdr.c index e8625892db..02ce3d902f 100644 --- a/main/cdr.c +++ b/main/cdr.c @@ -3520,7 +3520,7 @@ static int submit_scheduled_batch(const void *data) /* manually reschedule from this point in time */ ast_mutex_lock(&cdr_sched_lock); - cdr_sched = ast_sched_add(sched, mod_cfg->general->batch_settings.size * 1000, submit_scheduled_batch, NULL); + cdr_sched = ast_sched_add(sched, mod_cfg->general->batch_settings.time * 1000, submit_scheduled_batch, NULL); ast_mutex_unlock(&cdr_sched_lock); /* returning zero so the scheduler does not automatically reschedule */ return 0;