Skip to content

Commit

Permalink
🐛 [Scheduler] Fixed description of 'cron' paramerter of Cron Trigger …
Browse files Browse the repository at this point in the history
…Definition

Signed-off-by: Alberto Codutti <[email protected]>
  • Loading branch information
Coduz committed Jan 16, 2025
1 parent 971fa6e commit f6f0c0d
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 f6f0c0d

Please sign in to comment.