From 50bbd809937051311310d486c228bcc537415688 Mon Sep 17 00:00:00 2001 From: gordon chung Date: Wed, 25 Nov 2015 18:18:30 -0500 Subject: [PATCH] clean up integration test urls the endpoints for aodh, ceilometer and gnocchi end with trailing slash. because of that, our tests are calling //. this works but is technically incorrect. this patch cleans it up. Change-Id: I187ea35b6158ac86bc2c4f19597c37e0b75cf2e4 --- devstack/plugin.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index aa9e6a229..7b7f7f5c4 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -128,9 +128,9 @@ function _aodh_create_accounts { "alarming" "OpenStack Alarming Service") get_or_create_endpoint $aodh_service \ "$REGION_NAME" \ - "$(aodh_service_url)/" \ - "$(aodh_service_url)/" \ - "$(aodh_service_url)/" + "$(aodh_service_url)" \ + "$(aodh_service_url)" \ + "$(aodh_service_url)" fi fi }