File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,16 +84,16 @@ You may use one of several pre-defined schedules in place of a cron expression.
84
84
85
85
Intervals
86
86
87
- You may also schedule a job to execute at fixed intervals. This is supported by
88
- formatting the cron spec like this:
87
+ You may also schedule a job to execute at fixed intervals, starting at the time it's added
88
+ or cron is run. This is supported by formatting the cron spec like this:
89
89
90
90
@every <duration>
91
91
92
92
where "duration" is a string accepted by time.ParseDuration
93
93
(http://golang.org/pkg/time/#ParseDuration).
94
94
95
- For example, "@every 1h30m10s" would indicate a schedule that activates every
96
- 1 hour, 30 minutes, 10 seconds.
95
+ For example, "@every 1h30m10s" would indicate a schedule that activates immediately,
96
+ and then every 1 hour, 30 minutes, 10 seconds.
97
97
98
98
Note: The interval does not take the job runtime into account. For example,
99
99
if a job takes 3 minutes to run, and it is scheduled to run every 5 minutes,
You can’t perform that action at this time.
0 commit comments