Skip to content

Commit

Permalink
Set real CXZ schedules.
Browse files Browse the repository at this point in the history
  • Loading branch information
jannistsiroyannis committed Nov 16, 2023
1 parent c7a1dd6 commit f45a276
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ import whelk.Whelk
import java.sql.Connection
import java.sql.PreparedStatement
import java.sql.ResultSet
import java.sql.SQLType
import java.sql.Timestamp
import java.sql.Types
import java.time.Instant
import java.time.ZoneOffset
import java.time.temporal.ChronoUnit

@CompileStatic
Expand All @@ -34,7 +31,7 @@ class NotificationCleaner extends HouseKeeper {
}

public String getCronSchedule() {
return "* * * * *"
return "0 4 * * *"
}

public void trigger() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class NotificationGenerator extends HouseKeeper {
}

public String getCronSchedule() {
return "* * * * *"
return "0 5 * * *"
}

public void trigger() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class NotificationSender extends HouseKeeper {
}

public String getCronSchedule() {
return "* * * * *"
return "0 6 * * *"
}

@Override
Expand Down

0 comments on commit f45a276

Please sign in to comment.