mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
fix: invalid schedule should only warn in logs (#683)
This commit is contained in:
parent
ddb1629d9a
commit
f2f15c0650
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ function isScheduledNow(config) {
|
||||||
}
|
}
|
||||||
const [validSchedule, errorMessage] = hasValidSchedule(configSchedule);
|
const [validSchedule, errorMessage] = hasValidSchedule(configSchedule);
|
||||||
if (!validSchedule) {
|
if (!validSchedule) {
|
||||||
config.logger.error(errorMessage);
|
config.logger.warn(errorMessage);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
let now = moment();
|
let now = moment();
|
||||||
|
|
Loading…
Reference in a new issue