Skip to content

Commit

Permalink
hotfix: trigger scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
chominho96 committed Mar 1, 2024
1 parent 0fc9133 commit 3b30cc0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api-server/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring:
jpa:
database-platform: org.hibernate.dialect.MySQLDialect
hibernate:
ddl-auto: create
ddl-auto: update
properties:
hibernate:
format_sql: true
Expand Down
8 changes: 4 additions & 4 deletions batch/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring:
jpa:
database-platform: org.hibernate.dialect.MySQLDialect
hibernate:
ddl-auto: create
ddl-auto: update
properties:
hibernate:
format_sql: true
Expand All @@ -24,10 +24,10 @@ spring:

schedules:
cron:
stock: "0 2 * * * *"
stock: "0 35 * * * *"
dividend:
past: "0 4 * * * 0"
future: "0 4 * * * *"
past: "0 0 * * * *"
future: "0 0 * * * *"

financial:
fmp:
Expand Down
2 changes: 1 addition & 1 deletion domain/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spring:
jpa:
database-platform: org.hibernate.dialect.MySQLDialect
hibernate:
ddl-auto: create
ddl-auto: update
properties:
hibernate:
format_sql: true
Expand Down

0 comments on commit 3b30cc0

Please sign in to comment.