Fixed module_crontab in windows agent on minutes wildcard
This commit is contained in:
parent
9eefa6ff85
commit
cde7e011a5
|
@ -227,7 +227,7 @@ int Cron::getResetValue (int position) {
|
||||||
* @return false if should not execute
|
* @return false if should not execute
|
||||||
*/
|
*/
|
||||||
bool Cron::shouldExecuteAt (time_t date) {
|
bool Cron::shouldExecuteAt (time_t date) {
|
||||||
return this->utimestamp < date;
|
return this->utimestamp <= date;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue