Skip to content

Commit 9aa3908

Browse files
committed
add java.time accessible to Gson
1 parent 7111e6e commit 9aa3908

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

api/kubernetes/deploy_via_helm-dev.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ metadata:
109109
app: postgres
110110
name: ${ARGO_POSTGRESQL_SECRET_NAME}
111111
stringData:
112-
password: ${ARGO_POSTGRESQL_PASSWORD}
113-
username: ${ARGO_POSTGRESQL_USER}
112+
password: "${ARGO_POSTGRESQL_PASSWORD}"
113+
username: "${ARGO_POSTGRESQL_USER}"
114114
type: Opaque
115115
116116
EOF

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,8 @@ subprojects {
403403
listOf(
404404
// Make sure Spring DevTools is disabled in production as running it is a
405405
// security risk
406+
"--add-opens",
407+
"java.base/java.time=ALL-UNNAMED",
406408
"-Dspring.devtools.restart.enabled=false")
407409
ports = listOf("5005", "8080", "8081")
408410
// Docker Best Practice : run as non-root.

0 commit comments

Comments
 (0)