This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new bac9715740f Removes second call to
DefaultConfigurationConfigurer.configureVaultRefresh() (#17160)
bac9715740f is described below
commit bac9715740f6d8dd5eafe46124f58f7ecf347b4e
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);
}
/**