From f01773a98b99777b14b0fb1e4fa45572191dc60b Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Wed, 22 May 2024 21:35:50 +0530 Subject: [PATCH] fix: debugging 502s in pinging (8) --- .github/workflows/quick-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quick-testing.yml b/.github/workflows/quick-testing.yml index af8924d3..997116f7 100644 --- a/.github/workflows/quick-testing.yml +++ b/.github/workflows/quick-testing.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v2 - name: Set up opensearch directory - run: mkdir shuffle-database && chmod -R 755 shuffle-database + run: mkdir shuffle-database && chmod -R 777 shuffle-database - name: Build the stack run: docker-compose up -d @@ -22,7 +22,7 @@ jobs: - name: Check for restarting containers in a loop and fixing perms again run: | echo "Changing permissions on shuffle-database directory again" - chmod -R 755 shuffle-database + chmod -R 777 shuffle-database ATTEMPTS=30 # Total time = ATTEMPTS * 5 seconds = 30 seconds for i in $(seq 1 $ATTEMPTS); do