Change times to 60 seconds

This commit is contained in:
2023-06-16 16:44:23 -05:00
parent 2efc732530
commit f30b2a9ef8

View File

@ -112,7 +112,7 @@ public class QueryStatManager
queryStats = new ArrayList<>(); queryStats = new ArrayList<>();
executorService = Executors.newSingleThreadScheduledExecutor(); executorService = Executors.newSingleThreadScheduledExecutor();
executorService.scheduleAtFixedRate(new QueryStatManagerInsertJob(), 6, 6, TimeUnit.SECONDS); // todo - 60s executorService.scheduleAtFixedRate(new QueryStatManagerInsertJob(), 60, 60, TimeUnit.SECONDS);
} }