File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ echo Start first ingester
1212docker run $RUN_ARGS -d --name=i1 --hostname=i1 quay.io/cortexproject/cortex:$IMAGE_TAG -target=ingester $INGESTER_ARGS -ingester.claim-on-rollout=true
1313
1414I1_ADDR=$( container_ip i1)
15- wait_for " curl -s -f -m 3 $I1_ADDR : /ready" " ingester ready"
15+ wait_for " curl -s -f -m 3 $I1_ADDR /ready" " ingester ready"
1616
1717has_tokens_owned () {
18- curl -s -f -m 3 $1 : /metrics | grep -q ' cortex_ring_tokens_owned'
18+ curl -s -f -m 3 $1 /metrics | grep -q ' cortex_ring_tokens_owned'
1919}
2020DIST_ADDR=$( container_ip distributor)
2121wait_for " has_tokens_owned $DIST_ADDR " " distributor to see ingester in ring"
@@ -29,4 +29,4 @@ echo Stop first ingester so it should hand over
2929docker stop i1
3030
3131I2_ADDR=$( container_ip i2)
32- wait_for " curl -s -f -m 3 $I2_ADDR : /ready" " ingester ready"
32+ wait_for " curl -s -f -m 3 $I2_ADDR /ready" " ingester ready"
You can’t perform that action at this time.
0 commit comments