Skip to content

Commit

Permalink
Merge pull request #4174 from Coduz/fix-cronTriggerCronDescription
Browse files Browse the repository at this point in the history
🐛 [Scheduler] Fixed description of 'cron' paramerter of Cron Trigger Definition
  • Loading branch information
Coduz authored Jan 16, 2025
2 parents 971fa6e + f6f0c0d commit 9b90d26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public CronJobTriggerDefinition() {
null),
new TriggerPropertyRecord(
CronJobTriggerDefinitionPropertyKeys.CRON_EXPRESSION,
"The cron expression that defines the schedule of executions. Check documentation for CRON syntax",
"The Cron expression that defines the schedule of executions in UTC time zone. The expression consists of 6 or 7 space-separated fields: [seconds] [minutes] [hours] [day of month] [month] [day of week] [year] ([year] is optional). For example, the expression \"0 0/5 13,17 * * ?\" triggers a job execution every 5 minutes starting at 1pm until 1:55pm and starting at 5pm until 5:55pm every day. Check Everyware Cloud documentation for more details on Cron expressions",
String.class.getName(),
null)
)
Expand Down

0 comments on commit 9b90d26

Please sign in to comment.