This repository was archived by the owner on May 13, 2025. It is now read-only.
This repository was archived by the owner on May 13, 2025. It is now read-only.
[Jet Springboot] hazelcast.config system property is always logged as loaded/used config in server log even if it is overwritten #76
Open
Description
When configuration for Jet server for Spring Boot Starter is configured in hazelcast.config
which is passed as system property and another config file is passed, e.g. system property hazelcast.jet.imdg.config
is used, then Jet instance is correctly configured by hazelcast.jet.imdg.config
system property but log from Jet start says that file passed by hazelcast.config
system property was used for node configuration. There is log like:
[ INFO] [c.h.i.c.AbstractConfigLocator] Loading configuration '/home/user/hz.xml' from System property 'hazelcast.config'
[ INFO] [c.h.i.c.AbstractConfigLocator] Using configuration file at /home/user/hz.xml
It is not a functional bug (since it is work as expected) but log can be confusing for users.