File tree 1 file changed +3
-3
lines changed
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
12
12
docker run $RUN_ARGS -d --name=i1 --hostname=i1 quay.io/cortexproject/cortex:$IMAGE_TAG -target=ingester $INGESTER_ARGS -ingester.claim-on-rollout=true
13
13
14
14
I1_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"
16
16
17
17
has_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'
19
19
}
20
20
DIST_ADDR=$( container_ip distributor)
21
21
wait_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
29
29
docker stop i1
30
30
31
31
I2_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