commit d4158259a783f8ec47c93447d7d3fd06c411c411
parent ca343c1241e0cdea1ce18aad87b7f13161f609fd
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 22 Jun 2020 18:27:29 +0530
fix cron
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Scheduling.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Scheduling.kt
@@ -77,7 +77,8 @@ object NexusCron {
val cronDefinition =
CronDefinitionBuilder.defineCron()
.withSeconds().and()
- .withMinutes().optional().and()
+ .withMinutes().and()
+ .withHours().and()
.withDayOfMonth().optional().and()
.withMonth().optional().and()
.withDayOfWeek().optional()