This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-4.10.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.10.x by this push:
new d64c451289c Removes second call to
DefaultConfigurationConfigurer.configureVaultRefresh() (#17160)
d64c451289c is described below
commit d64c451289c98a0a8a7de5c53bae8855f33f93b7
Author: JiriOndrusek <[email protected]>
AuthorDate: Sat Feb 15 09:30:31 2025 +0100
Removes second call to
DefaultConfigurationConfigurer.configureVaultRefresh() (#17160)
---
.../camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
index 8eaf7348ab0..57ac46692d9 100644
--- a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
+++ b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
@@ -1566,8 +1566,6 @@ public abstract class BaseMainSupport extends BaseService
{
// and call after all properties are set
DefaultConfigurationConfigurer.afterPropertiesSet(camelContext);
- // and configure vault
- DefaultConfigurationConfigurer.configureVaultRefresh(camelContext);
}
/**