We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b6a23d commit 36dcd0cCopy full SHA for 36dcd0c
src/main/java/com/olegshan/entity/Job.java
@@ -84,7 +84,7 @@ public void setDate(LocalDateTime date) {
84
}
85
86
public String getDateToDisplay() {
87
- DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd MMMM HH:mm:ss");
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd MMMM");
88
return date.format(formatter);
89
90
src/main/java/com/olegshan/parser/Performer.java
@@ -22,8 +22,7 @@ public class Performer {
22
@Autowired
23
private HeadHunterUa headHunterUa;
24
25
- @Scheduled(cron = "0 0/1 * * * *")
26
-// @Scheduled(cron = "0 0 7-23 * * *")
+ @Scheduled(cron = "0 0 7-23 * * *")
27
public void perform() {
28
douUa.parse();
29
headHunterUa.parse();
0 commit comments