Skip to content

Commit

Permalink
release/0402-01 (#261)
Browse files Browse the repository at this point in the history
* 공간 인덱스 도입 (#258)

* chore: hibernate spatial 추가

* feat: point 칼럼 추가

* style: indent

* feat: point 편의 메소드

* feat: OpenAPI 데이터 수신 에러에 따른 NPE 예외처리 로직

* chore: 공간 인덱스 도입에 따른 sql 질의어(가이드)

* 공간 인덱스 적용을 위한 DB 변경 (#260)

* chore: OSIV false

* fix: 운영 DB 배치 스케줄링을 위한 임시 시간 변경
  • Loading branch information
Bisi3asi authored Apr 2, 2024
1 parent 57bfa9a commit e1349c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ChargerBatchUpdateScheduler {
private final ChargerStateUpdateConfig chargerStateUpdateConfig;
private final ChargerService chargerService;

@Scheduled(cron = "0 30 3 * * *") // 운영용
@Scheduled(cron = "0 20 10 * * *") // 운영용
public void chargerBatchUpdateScheduled() {
while (!AppConfig.isAppInitialized || chargerStateUpdateConfig.isUpdateRunning()) {
try {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spring:
format_sql: true
highlight_sql: true
use_sql_comments: true
open-in-view: true
open-in-view: false
defer-datasource-initialization: true
security:
oauth2:
Expand Down

0 comments on commit e1349c3

Please sign in to comment.