We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 370c456 commit aa0da2cCopy full SHA for aa0da2c
src/main/java/ch/ethz/seb/sps/server/servicelayer/impl/AutomatedDeletionServiceImpl.java
@@ -45,10 +45,11 @@ public AutomatedDeletionServiceImpl(
45
46
@Override
47
public void init() {
48
+ // TODO at the moment we do not have auto deletion. Maybe later
49
// triggered every hour...
- this.taskScheduler.scheduleWithFixedDelay(
50
- this::update,
51
- java.time.Duration.ofMillis(Constants.HOUR_IN_MILLIS));
+// this.taskScheduler.scheduleWithFixedDelay(
+// this::update,
52
+// java.time.Duration.ofMillis(Constants.HOUR_IN_MILLIS));
53
}
54
55
private void update() {
0 commit comments