Skip to content

Commit

Permalink
fix: reduce the execution sweep job frequency from hourly to daily (#…
Browse files Browse the repository at this point in the history
…20601)

Signed-off-by: chlins <chlins.zhang@gmail.com>
  • Loading branch information
chlins committed Jun 17, 2024
1 parent df4ab85 commit ac67161
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controller/task/sweep.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const (
systemVendorID = -1

cronTypeCustom = "Custom"
// run for every hour
cronSpec = "0 0 * * * *"
// run for every day
cronSpec = "0 0 0 * * *"
)

func init() {
Expand Down

0 comments on commit ac67161

Please sign in to comment.