This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
v3.1.0 - property conductor.additional.modules not found #2397
Unanswered
sukruthiarjula
asked this question in
Q&A
Replies: 1 comment
-
What are the additional modules that you are looking to add to the server? As a result, you would need to convert your Guice modules to Spring configurations and then make these available in the component classpath. You would then need to explicitly enable scanning of these packages in the application here using - @SpringBootApplication(scanBasePackages = {"com.netflix.conductor", "com.additional.module.package"}) If you would like to simplify this approach and enable dynamic registration of additional spring beans, we would appreciate a new PR with the changes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
We are on 2.31.4 and trying to upgrade to 3.1.0. below is the command I use for starting the application
java -jar -DCONDUCTOR_CONFIG_FILE=$config_file conductor-server-*-SNAPSHOT-boot.jar /app/config/log4j.properties
In the config properties file I have included
conductor.additional.modules= files which are created extending the abstract module
Now that the newer version doesn't have conductor.additional.modules property as before in 2.31.4 https://github.com/Netflix/conductor/blob/v2.31.4/core/src/main/java/com/netflix/conductor/core/config/Configuration.java
So, how we can specify the additional modules with the newer version v3.1.0??
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions