孙永军 hace 1 año
padre
commit
3aaefb3842
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/main/java/com/smcic/api/epg/job/EpgRefreshJob.java

+ 1 - 1
src/main/java/com/smcic/api/epg/job/EpgRefreshJob.java

@@ -16,7 +16,7 @@ public class EpgRefreshJob {
     @Resource
     private ChannelService channelService;
 
-    @Scheduled(cron = "0 */10 * * * *")
+    @Scheduled(cron = "0 * * * * *")
     public void refresh() {
         channelService.tvList().forEach(channel -> programService.setCache(channel.getChannelId()));
     }