From bda4b5c0a6bf6232dbc253ba83291fc3a4711ffe Mon Sep 17 00:00:00 2001 From: Sooraj Sinha <81695996+soosinha@users.noreply.github.com> Date: Mon, 11 Sep 2023 11:29:12 +0530 Subject: [PATCH] Remove numNodes parameter in security tests (#991) 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 (cherry picked from commit c19dcba791a8a60f660e1367925bd08d01a57b9e) --- .github/workflows/security-knn-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/security-knn-tests.yml b/.github/workflows/security-knn-tests.yml index de049f0c..867df6c8 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 clean release -Dbuild.snapshot=true -PnumNodes=1 -Psecurity=true + ./gradlew clean release -Dbuild.snapshot=true -Psecurity=true - name: Upload failed logs uses: actions/upload-artifact@v2 if: failure() @@ -116,4 +116,4 @@ jobs: - name: Uploads coverage with: fetch-depth: 2 - uses: codecov/codecov-action@v1.2.1 \ No newline at end of file + uses: codecov/codecov-action@v1.2.1