Skip to content

Commit 4fc6201

Browse files
committed
disable approved-only mode for launch configuration of testcluster
Signed-off-by: Iwan Igonin <[email protected]>
1 parent 0bee0a8 commit 4fc6201

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildSrc/src/main/java/org/opensearch/gradle/testclusters/OpenSearchNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ private void createConfiguration() {
11871187
baseConfig.put("indices.breaker.total.use_real_memory", "false");
11881188
// Don't wait for state, just start up quickly. This will also allow new and old nodes in the BWC case to become the master
11891189
baseConfig.put("discovery.initial_state_timeout", "0s");
1190-
baseConfig.put("fips.approved", "true");
1190+
baseConfig.put("fips.approved", "false");
11911191

11921192
// TODO: Remove these once https://github.com/elastic/elasticsearch/issues/46091 is fixed
11931193
baseConfig.put("logger.org.opensearch.action.support.master", "DEBUG");

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ reactivestreams = 1.0.4
5858
bouncycastle_jce=1.0.2.4
5959
bouncycastle_tls=1.0.19
6060
bouncycastle_pkix=1.0.7
61-
bouncycastle_pg=1.0.7.1
61+
bouncycastle_pg=1.0.8
6262
# test dependencies
6363
randomizedrunner = 2.7.1
6464
junit = 4.13.2

0 commit comments

Comments
 (0)