mirror of https://github.com/status-im/consul.git
wait_for_namespace should take two args (#9086)
This commit is contained in:
parent
738ff1801f
commit
957293d884
|
@ -687,8 +687,9 @@ function read_config_entry {
|
||||||
}
|
}
|
||||||
|
|
||||||
function wait_for_namespace {
|
function wait_for_namespace {
|
||||||
local DC=${1:-primary}
|
local NS="${1}"
|
||||||
retry_default docker_curl "$DC" -sLf "http://127.0.0.1:8500/v1/namespace/${1}" >/dev/null
|
local DC=${2:-primary}
|
||||||
|
retry_default docker_curl "$DC" -sLf "http://127.0.0.1:8500/v1/namespace/${NS}" >/dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
function wait_for_config_entry {
|
function wait_for_config_entry {
|
||||||
|
|
Loading…
Reference in New Issue