#92 -- Fix scheduled time

This commit is contained in:
Anton Romanov 2023-02-20 14:22:38 +04:00
parent de6c83c239
commit 1e69baea80

View File

@ -22,7 +22,7 @@ public class ScheduledTimeSeriesService {
this.branchService = branchService;
}
@Scheduled(cron = "0 0 * * * *", zone = "Europe/Samara")
@Scheduled(cron = "0 0 8 * * *", zone = "Europe/Samara")
public void addTimeSeriesPoints() {
log.debug("Старт добавления новых точек временного ряда");
List<Branch> branches = branchService.findAll();