Browse Source

[Bug-9094][API] fix default time-zone conf (#9095)

* fix the API server default time-zone conf

* fix the Python server default time-zone conf
3.0.0/version-upgrade
Tq 2 years ago committed by GitHub
parent
commit
3c377ff54a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      dolphinscheduler-api/src/main/resources/application.yaml
  2. 3
      dolphinscheduler-python/src/main/resources/application.yaml

3
dolphinscheduler-api/src/main/resources/application.yaml

@ -33,7 +33,8 @@ spring:
main:
banner-mode: off
jackson:
time-zone: GMT+8
time-zone: UTC
date-format: "yyyy-MM-dd HH:mm:ss"
servlet:
multipart:
max-file-size: 1024MB

3
dolphinscheduler-python/src/main/resources/application.yaml

@ -26,7 +26,8 @@ spring:
username: sa
password: ""
jackson:
time-zone: GMT+8
time-zone: UTC
date-format: "yyyy-MM-dd HH:mm:ss"
servlet:
multipart:
max-file-size: 1024MB

Loading…
Cancel
Save