Skip to content

Commit caea642

Browse files
dev에 배포후 실행 불가 (#93)
Bug : 프로퍼티파일 수정
1 parent 8710f0d commit caea642

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

src/main/resources/application.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ spring:
77
- swagger.yml
88
- redis.yml
99
- auth.yml
10-
- optional:classpath:env.properties
1110
application:
12-
name: taskflow2
11+
name: taskflow
1312
elasticsearch:
1413
uris: ${ELASTIC_URI:127.0.0.1:9200}
1514

@@ -24,21 +23,21 @@ server:
2423
max: 600
2524
min-spare: 100
2625

27-
logging:
28-
level:
29-
root: INFO
30-
taskflow.clap.server: ERROR
31-
org:
32-
springframework: DEBUG
26+
#logging:
27+
# level:
28+
# root: INFO
29+
# taskflow.clap.server: ERROR
30+
# org:
31+
# springframework: DEBUG
3332

3433
---
3534
spring.config.activate.on-profile: local
3635
logging:
3736
level:
3837
root: INFO
3938
taskflow.clap.server: ERROR
40-
org:
41-
springframework: DEBUG
39+
# org:
40+
# springframework: DEBUG
4241

4342
---
4443
spring.config.activate.on-profile: dev

src/main/resources/mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spring:
1010

1111
datasource:
1212
driver-class-name: com.mysql.cj.jdbc.Driver
13-
url: jdbc:mysql://${DATABASE_HOST:localhost}:${DATABASE_PORT:3306}/${DATABASE_NAME:taskflowdev}?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&autoReconnect=true
13+
url: jdbc:mysql://${DATABASE_HOST:localhost}:${DATABASE_PORT:3306}/${DATABASE_NAME:taskflow}?characterEncoding=UTF-8&serverTimezone=Asia/Seoul&autoReconnect=true
1414
username: ${DATABASE_USERNAME}
1515
password: ${DATABASE_PASSWORD}
1616
data-source-properties:

0 commit comments

Comments
 (0)