bugfix: $ActionExecOnlyOnce interval did not work properly

Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
This commit is contained in:
Tomas Heinrich 2011-10-13 10:43:59 +02:00 committed by Rainer Gerhards
parent 086db18cc3
commit 8dd9959735
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,7 @@
---------------------------------------------------------------------------
Version 4.8.1 [v4-beta], 2011-09-??
- bugfix: $ActionExecOnlyOnce interval did not work properly
Thanks to Tomas Heinrich for the patch
- bugfix: potential abort if ultra-large file io buffers are used and
dynafile cache exhausts address space (primarily a problem on 32 bit
platforms)

View File

@ -716,7 +716,6 @@ actionWriteToAction(action_t *pAction)
DBGPRINTF("action not yet ready again to be executed, onceInterval %d, tCurr %d, tNext %d\n",
(int) pAction->iSecsExecOnceInterval, (int) getActNow(pAction),
(int) (pAction->iSecsExecOnceInterval + pAction->tLastExec));
pAction->tLastExec = getActNow(pAction); /* re-init time flags */
FINALIZE;
}