Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update submit-specs.sh to use correct host (#75)

authored by

hailey and committed by
GitHub
d8b2d870 0af44034

+2 -2
+2 -2
druid/specs/submit-specs.sh
··· 1 1 #!/bin/sh 2 2 3 3 echo "Waiting for Coordinator-Overlord to be ready..." 4 - while ! curl -f http://coordinator:8081/status >/dev/null 2>&1; do 4 + while ! curl -f http://druid-coordinator:8081 >/dev/null 2>&1; do 5 5 sleep 5 6 6 done 7 7 echo "Coordinator-Overlord is ready!" ··· 18 18 -H "Content-Type: application/json" \ 19 19 -d @"$spec" \ 20 20 -v \ 21 - http://coordinator:8081/druid/indexer/v1/supervisor 21 + http://druid-coordinator:8081/druid/indexer/v1/supervisor 22 22 23 23 echo "" 24 24 echo "========================="