Disable processing stats for a little :>

This commit is contained in:
Nassim Jahnke 2023-04-30 15:23:46 +02:00
parent ad5f68f297
commit 87731a5e05
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -25,11 +25,12 @@ public class DbUpdateTask {
@Scheduled(fixedRateString = "#{@hangarConfig.updateTasks.versionDownloads.toMillis()}", initialDelay = 1000)
public void updateVersionDownloads() {
this.statService.processVersionDownloads();
//TODO
//this.statService.processVersionDownloads();
}
@Scheduled(fixedRateString = "#{@hangarConfig.updateTasks.projectViews.toMillis()}", initialDelay = 1000)
public void updateProjectViews() {
this.statService.processProjectViews();
//this.statService.processProjectViews();
}
}