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 e4c1a7a commit bf8701cCopy full SHA for bf8701c
src/main/kotlin/org/gitanimals/render/infra/NewPetDropRateDistributionReport.kt
@@ -33,7 +33,7 @@ class NewPetDropRateDistributionReport(
33
@Scheduled(cron = EVERY_SUNDAY_9AM, zone = "Asia/Seoul")
34
fun reportWeeklyNewPetDropRateDistribution() {
35
runCatching {
36
- publishDropRateDistribution(7, Type.DAILY)
+ publishDropRateDistribution(7, Type.WEEKLY)
37
}.also {
38
MDC.remove(TRACE_ID)
39
}
@@ -42,7 +42,7 @@ class NewPetDropRateDistributionReport(
42
@Scheduled(cron = EVERY_FIRST_DAY_OF_MONTH_9AM, zone = "Asia/Seoul")
43
fun reportMonthlyNewPetDropRateDistribution() {
44
45
- publishDropRateDistribution(30, Type.DAILY)
+ publishDropRateDistribution(30, Type.MONTHLY)
46
47
48
0 commit comments