We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3121af8 commit d79c56aCopy full SHA for d79c56a
2 files changed
app-api/src/main/resources/application-prod.yml
@@ -1,6 +1,7 @@
1
cors:
2
allowed-origins:
3
- ${CORS_ORIGIN_PROD}
4
+ - ${CORS_ORIGIN_DEV}
5
6
logging:
7
level:
app-batch/app-batch-rss/src/main/kotlin/site/techmoa/app/batch/rss/scheduler/LocalCollectorScheduler.kt
@@ -11,7 +11,7 @@ class LocalCollectorScheduler(
11
private val collector: CollectorTemplate
12
) {
13
companion object {
14
- const val EVERY_MINUTE = "0 * * * * *"
+ const val EVERY_MINUTE = "0 0 * * * *"
15
}
16
@Scheduled(cron = EVERY_MINUTE)
17
fun run() {
0 commit comments