Skip to content

Commit 50a9601

Browse files
author
danbai225
committed
.
1 parent 8973733 commit 50a9601

File tree

3 files changed

+69
-61
lines changed

3 files changed

+69
-61
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ rebel.xml
1313
.settings
1414
.springBeans
1515
.sts4-cache
16-
1716
**/application.yml
17+
**/jdbc.properties
1818
### IntelliJ IDEA ###
1919
.idea
2020
*.iws
2121
*.iml
2222
*.ipr
23-
2423
### NetBeans ###
2524
/nbproject/private/
2625
/nbbuild/
@@ -31,4 +30,3 @@ build/
3130

3231
### VS Code ###
3332
.vscode/
34-
/src/main/resources/jdbc.properties

.idea/workspace.xml

Lines changed: 67 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/java/com/danbai/ys/scheduler/Scheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Scheduler {
2525
@Autowired
2626
private Dmas as;
2727

28-
@Scheduled(fixedDelay = 6000000)
28+
@Scheduled(fixedDelay = 60000)
2929
@Async
3030
public void cronJobSchedule() {
3131
Set tagids = redisTemplate.opsForSet().members("tagids");

0 commit comments

Comments
 (0)