Skip to content

Commit bf8701c

Browse files
committed
refactor: DAILY, WEEKLY, MONTHLY 오타를 수정한다
1 parent e4c1a7a commit bf8701c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/org/gitanimals/render/infra/NewPetDropRateDistributionReport.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class NewPetDropRateDistributionReport(
3333
@Scheduled(cron = EVERY_SUNDAY_9AM, zone = "Asia/Seoul")
3434
fun reportWeeklyNewPetDropRateDistribution() {
3535
runCatching {
36-
publishDropRateDistribution(7, Type.DAILY)
36+
publishDropRateDistribution(7, Type.WEEKLY)
3737
}.also {
3838
MDC.remove(TRACE_ID)
3939
}
@@ -42,7 +42,7 @@ class NewPetDropRateDistributionReport(
4242
@Scheduled(cron = EVERY_FIRST_DAY_OF_MONTH_9AM, zone = "Asia/Seoul")
4343
fun reportMonthlyNewPetDropRateDistribution() {
4444
runCatching {
45-
publishDropRateDistribution(30, Type.DAILY)
45+
publishDropRateDistribution(30, Type.MONTHLY)
4646
}.also {
4747
MDC.remove(TRACE_ID)
4848
}

0 commit comments

Comments
 (0)