We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
should use @DynamicPropertySource static void register(DynamicPropertyRegistry registry) { registry.add("spring.elasticsearch.xxx", () -> yyy);
instead of System.setProperty
see https://github.com/powsybl/powsybl-case-server/pull/11/files#diff-36e0324746b1b66aaa0dfccba891937eb10b1ca4ff7661d3469afd5ef981f152R46
It's a better API to test things rather than hoping that we are the last do to system.setProperty before it is read
The text was updated successfully, but these errors were encountered:
No branches or pull requests
should use @DynamicPropertySource
static void register(DynamicPropertyRegistry registry) {
registry.add("spring.elasticsearch.xxx", () -> yyy);
instead of System.setProperty
see https://github.com/powsybl/powsybl-case-server/pull/11/files#diff-36e0324746b1b66aaa0dfccba891937eb10b1ca4ff7661d3469afd5ef981f152R46
It's a better API to test things rather than hoping that we are the last do to system.setProperty before it is read
The text was updated successfully, but these errors were encountered: