From 1689c2b81b46262cb46006f5ba51b7cc368fcdf7 Mon Sep 17 00:00:00 2001 From: "metabase-bot[bot]" <109303359+metabase-bot[bot]@users.noreply.github.com> Date: Tue, 4 Apr 2023 14:53:57 +0000 Subject: [PATCH] CI: make the healtcheck curl not silent (#29719) (#29791) * Update uberjar.yml Co-authored-by: Luis Paolini <paoliniluis@gmail.com> --- .github/workflows/uberjar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/uberjar.yml b/.github/workflows/uberjar.yml index f43654a2cf2..9fa4fefc940 100644 --- a/.github/workflows/uberjar.yml +++ b/.github/workflows/uberjar.yml @@ -70,7 +70,7 @@ jobs: - name: Launch uberjar run: java -jar ./target/uberjar/metabase.jar & - name: Wait for Metabase to start - run: while ! curl -s 'http://localhost:3000/api/health' | grep '{"status":"ok"}'; do sleep 1; done + run: while ! curl 'http://localhost:3000/api/health' | grep '{"status":"ok"}'; do sleep 1; done containerize_test_and_push_container: runs-on: ubuntu-22.04 -- GitLab