Skip to content

Commit

Permalink
fix: group rank 스케줄러 시간 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Oct 9, 2024
1 parent 7baf546 commit 42d4596
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import org.springframework.stereotype.Component
class GroupRankScheduler(
private val groupRankRefreshJob: GroupRankRefreshJob,
) {
/** 10초에 한번 스케줄러 동작 */
@Scheduled(fixedRate = 10000)
/** 30초에 한번 스케줄러 동작 */
@Scheduled(fixedRate = 30000)
fun runRefreshGroupRank() {
CoroutineScope(Dispatchers.IO + Job()).launch {
groupRankRefreshJob.run()
Expand Down

0 comments on commit 42d4596

Please sign in to comment.