diff options
-rwxr-xr-x | docker/run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/run_tests.sh b/docker/run_tests.sh index 9e2021669..7c5349ae2 100755 --- a/docker/run_tests.sh +++ b/docker/run_tests.sh @@ -53,7 +53,7 @@ function clean_openstack(){ function odl_tests(){ keystone_ip=$(keystone catalog --service identity | grep publicURL | cut -f3 -d"/" | cut -f1 -d":") # historically most of the installers use the same IP for neutron and keystone API - neutron_ip=keystone_ip + neutron_ip=$keystone_ip odl_ip=$(keystone catalog --service network | grep publicURL | cut -f3 -d"/" | cut -f1 -d":") usr_name=$(env | grep OS | grep OS_USERNAME | cut -f2 -d'=') password=$(env | grep OS | grep OS_PASSWORD | cut -f2 -d'=') |