Skip to content

Commit

Permalink
Merge pull request #87 from stephanebruckert/patch-1
Browse files Browse the repository at this point in the history
Fix CRON doc link
  • Loading branch information
fdevans authored Oct 6, 2023
2 parents 3c028f4 + 8223aa0 commit 574c026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rundeck/resource_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ func JobScheduleFromResourceData(d *schema.ResourceData, job *JobDetail) error {
if cronSpec != "" {
schedule := strings.Split(cronSpec, " ")
if len(schedule) != 7 {
return fmt.Errorf("the Rundeck schedule must be formatted like a cron expression, as defined here: http://www.quartz-scheduler.org/documentation/quartz-2.2.x/tutorials/tutorial-lesson-06.html")
return fmt.Errorf("the Rundeck schedule must be formatted like a cron expression, as defined here: http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/tutorial-lesson-06.html")
}
job.Schedule = &JobSchedule{
Time: JobScheduleTime{
Expand Down

0 comments on commit 574c026

Please sign in to comment.