Skip to content

Commit

Permalink
Fix default frequency_in_seconds
Browse files Browse the repository at this point in the history
4 * 60 * 60 = 14400, not 144000
  • Loading branch information
philippthun authored Feb 16, 2024
1 parent df8a9e4 commit f334c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/cloud_controller_clock/spec
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ properties:
default: 30
cc.failed_jobs.frequency_in_seconds:
description: "How often the failed_jobs cleanup job runs"
default: 144000 # 4 hours
default: 14400 # 4 hours

cc.external_protocol:
default: "https"
Expand Down

0 comments on commit f334c01

Please sign in to comment.