Skip to content

Commit

Permalink
Update HistoryCleanupDaemon to run every 4 hours instead of every 8 h…
Browse files Browse the repository at this point in the history
…ours
  • Loading branch information
wcgunter committed Nov 27, 2023
1 parent b5d08cc commit c46bcad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class HistoryCleanupDaemon extends Thread {
private static final Logger log = LoggerFactory.getLogger(HistoryCleanupDaemon.class);

private static final int THIS_THREAD_REPEAT_DELAY = 8 * 60 * 60000; // 8 hours
private static final int THIS_THREAD_REPEAT_DELAY = 4 * 60 * 60000; // 4 hours

@Autowired private CwsConsoleService cwsConsoleService;
@Autowired private HistoryService historyService;
Expand Down

0 comments on commit c46bcad

Please sign in to comment.