Skip to content

Commit 9ba3382

Browse files
fix: removed UTC timezone flags. we can rely on the linux default (#585)
Signed-off-by: Matt Peterson <matt.peterson@swirldslabs.com>
1 parent e1d3826 commit 9ba3382

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

charts/hedera-block-node/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ blockNode:
7474
# Add any additional env configuration here
7575
# key: value
7676
BLOCKNODE_STORAGE_ROOT_PATH: "/app/storage"
77-
JAVA_TOOL_OPTIONS: "-Djava.util.logging.config.file=/app/logs/config/logging.properties -Duser.timezone=UTC"
77+
JAVA_TOOL_OPTIONS: "-Djava.util.logging.config.file=/app/logs/config/logging.properties"
7878
secret:
7979
PRIVATE_KEY: "fake_private_key"
8080
health:

server/docker/update-env.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ else
3838
echo "JAVA_OPTS='-Xms16G -Xmx16G'" >> .env
3939
fi
4040

41-
# Set the timezone to UTC and the logging properties file
4241
# file is mounted in the docker-compose.yml, changes to the file will be reflected in the container by simply restarting it
43-
echo "JAVA_TOOL_OPTIONS='-Djava.util.logging.config.file=/app/logs/config/logging.properties -Duser.timezone=UTC'" >> .env
42+
echo "JAVA_TOOL_OPTIONS='-Djava.util.logging.config.file=/app/logs/config/logging.properties'" >> .env
4443

4544
# Output the values
4645
echo ".env properties:"

0 commit comments

Comments
 (0)