Adding environment variables to override hapi properties file settings

This commit is contained in:
Peter Micuch
2020-05-14 11:44:46 +02:00
parent 7b5e0ae903
commit e2eee4e4e5

View File

@@ -138,6 +138,7 @@ public class HapiProperties {
if (overrideProps != null) {
properties.putAll(overrideProps);
}
properties.putAll(System.getenv());
return properties;
}