Created
February 6, 2019 23:25
-
-
Save colinfwren/97af59df904e7326becfce3a4a755ff0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
until $(curl --output /dev/null --silent --head --fail http://$HOST_IP:8080/test-runs/$TEST_RUN_ID) ; do | |
echo "Still waiting for Schema Registry to become available"; | |
sleep 5; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment