Skip to content

Commit d79c56a

Browse files
authored
fix: qa환경 변수 주입을 변경한다 (#77)
* fix: 로컬 환경 RSS 스케줄링 시간을 변경한다 * fix: 환경변수 주입 설정을 변경한다
1 parent 3121af8 commit d79c56a

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

app-api/src/main/resources/application-prod.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
cors:
22
allowed-origins:
33
- ${CORS_ORIGIN_PROD}
4+
- ${CORS_ORIGIN_DEV}
45

56
logging:
67
level:

app-batch/app-batch-rss/src/main/kotlin/site/techmoa/app/batch/rss/scheduler/LocalCollectorScheduler.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class LocalCollectorScheduler(
1111
private val collector: CollectorTemplate
1212
) {
1313
companion object {
14-
const val EVERY_MINUTE = "0 * * * * *"
14+
const val EVERY_MINUTE = "0 0 * * * *"
1515
}
1616
@Scheduled(cron = EVERY_MINUTE)
1717
fun run() {

0 commit comments

Comments
 (0)