diff --git a/src/main/java/com/dailyon/auctionservice/chat/scheduler/ChatScheduler.java b/src/main/java/com/dailyon/auctionservice/chat/scheduler/ChatScheduler.java index 5eecce8..f04653a 100644 --- a/src/main/java/com/dailyon/auctionservice/chat/scheduler/ChatScheduler.java +++ b/src/main/java/com/dailyon/auctionservice/chat/scheduler/ChatScheduler.java @@ -44,7 +44,7 @@ public void configureTasks(ScheduledTaskRegistrar taskRegistrar) { } public void startJob(String auctionId) { - countdown = 1 * 30 * 1000; + countdown = 3 * 60 * 1000; if (this.jobDisposable == null || this.jobDisposable.isDisposed()) { this.jobDisposable = Flux.interval(Duration.ofSeconds(1)).flatMap(it -> executeJob(auctionId)).subscribe();