squakez commented on code in PR #15063:
URL: https://github.com/apache/camel/pull/15063#discussion_r1711238220
##########
core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java:
##########
@@ -415,6 +421,15 @@ protected void configurePropertiesService(CamelContext
camelContext) throws Exce
if (op != null) {
pc.setOverrideProperties(op);
}
+
+ Optional<String> cloudLocations =
pc.resolveProperty(MainConstants.CLOUD_PROPERTIES_LOCATION);
+ if (cloudLocations.isPresent()) {
+ LOG.info("Cloud properties location: {}", cloudLocations);
+ final Properties kp = tryLoadCloudProperties(op,
cloudLocations.get());
+ if (kp != null) {
+ pc.setOverrideProperties(kp);
Review Comment:
The `tryLoadCloudProperties` is taking that overrideProperties and merge it,
so, we should be safe.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]