Skip to content
Snippets Groups Projects
Unverified Commit 3637ecf4 authored by Luis Paolini's avatar Luis Paolini Committed by GitHub
Browse files

CI: make the healtcheck curl not silent (#29719)

* Update uberjar.yml
parent 220ad8f1
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment