Skip to content

Commit

Permalink
Fixed export file cleanup rate
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhemSempere committed Nov 4, 2024
1 parent 18db154 commit 65e197a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/cirad/manager/ScheduledTaskManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void cleanupCompleteImportProcesses() {
/**
* Cleanup old finished processes regularly
*/
@Scheduled(fixedRate = 1000*60/*60*/ /* 1 hour */)
@Scheduled(fixedRate = 1000*60*60 /* 1 hour */)
public void cleanupExpiredExportFiles() {
new Thread() {
public void run() {
Expand Down

0 comments on commit 65e197a

Please sign in to comment.