From 1f1a36b612e4e39dcb17303ab5d6c1226219a711 Mon Sep 17 00:00:00 2001 From: Kaitlin Farr Date: Wed, 26 Apr 2017 10:48:57 -0400 Subject: [PATCH] Update keystone endpoint for functional tests DevStack was updated so that the port can't be used with the keystone URI anymore. See I46294fb24e3c23fa19fcfd7d6c9ee8a932354702 Change-Id: I808240d534be5e4d50f3f51e6b8318cbffec9c96 --- etc/functional_tests.conf | 4 ++-- functionaltests/common/config.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/functional_tests.conf b/etc/functional_tests.conf index 25065bcc..a0612acc 100644 --- a/etc/functional_tests.conf +++ b/etc/functional_tests.conf @@ -13,8 +13,8 @@ project_domain_name=Default [identity] # Replace these with values that represent your identity configuration -uri=http://localhost:5000/v2.0 -uri_v3=http://localhost:5000/v3 +uri=http://localhost/identity/v2.0 +uri_v3=http://localhost/identity/v3 auth_version=v3 username=admin diff --git a/functionaltests/common/config.py b/functionaltests/common/config.py index 4466a515..39f7b0aa 100644 --- a/functionaltests/common/config.py +++ b/functionaltests/common/config.py @@ -26,8 +26,8 @@ def setup_config(config_file=''): identity_group = cfg.OptGroup(name='identity') identity_options = [ - cfg.StrOpt('uri', default='http://localhost:5000/v2.0'), - cfg.StrOpt('uri_v3', default='http://localhost:5000/v3'), + cfg.StrOpt('uri', default='http://localhost/identity/v2.0'), + cfg.StrOpt('uri_v3', default='http://localhost/identity/v3'), cfg.StrOpt('auth_version', default='v3'), cfg.StrOpt('username', default='admin'), cfg.StrOpt('password', default='secretadmin'),