孙永军 1 年間 前
コミット
3aaefb3842
1 ファイル変更1 行追加1 行削除
  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()));
     }