소스 검색

节目单

孙永军 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()));
     }