From d959e1185e9f69f3c8014e2337d5d8aa86749579 Mon Sep 17 00:00:00 2001 From: Sooraj Sinha Date: Wed, 7 Jun 2023 17:49:10 +0530 Subject: [PATCH] Remove numNodes parameter in security tests Some of the integ tests like those for wait_for_active_shards need atleast 2 nodes in the cluster to run successfully. Removing the numNodes=1 parameter so that by default 2 node cluster is created Signed-off-by: Sooraj Sinha --- .github/workflows/security-knn-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/security-knn-tests.yml b/.github/workflows/security-knn-tests.yml index 3f98f3cb..45d4e898 100644 --- a/.github/workflows/security-knn-tests.yml +++ b/.github/workflows/security-knn-tests.yml @@ -63,7 +63,7 @@ jobs: - name: Build and run Replication tests run: | ls -al src/test/resources/security/plugin - ./gradlew --refresh-dependencies clean release -Dbuild.snapshot=true -PnumNodes=1 -Psecurity=true + ./gradlew --refresh-dependencies clean release -Dbuild.snapshot=true -Psecurity=true - name: Upload failed logs uses: actions/upload-artifact@v2 if: failure()