From 75f1c0990238f81d32360b6ebdaae8b42e1efcbd Mon Sep 17 00:00:00 2001 From: dblock Date: Thu, 18 Apr 2024 16:28:51 -0400 Subject: [PATCH] Use ./gradlew run. Signed-off-by: dblock --- .github/workflows/test_unreleased.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test_unreleased.yml b/.github/workflows/test_unreleased.yml index ac681f6e..5a2240c9 100644 --- a/.github/workflows/test_unreleased.yml +++ b/.github/workflows/test_unreleased.yml @@ -51,8 +51,7 @@ jobs: working-directory: opensearch/distribution/archives/linux-tar/build/distributions run: | tar xf opensearch-min-* - echo "discovery.type: single-node" >> ./opensearch-*/config/opensearch.yml - ./opensearch-*/bin/opensearch & + ./opensearch-*/bin/opensearch -E path.repo=/tmp & for attempt in {1..20}; do sleep 5; if curl -s localhost:9200; then echo '=====> ready'; break; fi; echo '=====> waiting...'; done - name: Checkout PHP Client