Deploy rabbitmq first when using proxies
This commit is contained in:
parent
b0ce589ef0
commit
efbf50991e
|
|
@ -513,13 +513,13 @@ elif [[ "$COMMAND" == "stop-rabbitmq" ]]
|
|||
fi
|
||||
}
|
||||
determine_required_components_including_rabbitmq() {
|
||||
if [[ "$@" != *"rabbitmq"* ]]; then
|
||||
REQUIRED_COMPONENTS+=("rabbitmq")
|
||||
fi
|
||||
for (( i=1; i<=$#; i++)) {
|
||||
eval val='$'$i
|
||||
REQUIRED_COMPONENTS+=( "$val" )
|
||||
}
|
||||
if [[ "$@" != *"rabbitmq"* ]]; then
|
||||
REQUIRED_COMPONENTS+=("rabbitmq")
|
||||
fi
|
||||
}
|
||||
determine_required_components_excluding_rabbitmq() {
|
||||
for (( i=1; i<=$#; i++)) {
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@ TEST_CASES_PATH=/basic-auth
|
|||
PROFILES="proxy"
|
||||
|
||||
source $SCRIPT/../../bin/suite_template
|
||||
runWith proxy
|
||||
runWith rabbitmq proxy
|
||||
|
|
|
|||
|
|
@ -7,4 +7,4 @@ TEST_CONFIG_PATH=/oauth
|
|||
PROFILES="uaa fakeportal fakeproxy fakeportal-mgt-oauth-provider idp-initiated mgt-prefix uaa-oauth-provider"
|
||||
|
||||
source $SCRIPT/../../bin/suite_template $@
|
||||
runWith uaa fakeportal fakeproxy
|
||||
runWith rabbitmq uaa fakeportal fakeproxy
|
||||
|
|
|
|||
|
|
@ -7,4 +7,4 @@ TEST_CONFIG_PATH=/oauth
|
|||
PROFILES="uaa fakeportal fakeproxy fakeportal-mgt-oauth-provider idp-initiated uaa-oauth-provider"
|
||||
|
||||
source $SCRIPT/../../bin/suite_template $@
|
||||
runWith uaa fakeportal fakeproxy
|
||||
runWith rabbitmq uaa fakeportal fakeproxy
|
||||
|
|
|
|||
Loading…
Reference in New Issue