diff --git a/etc/barbican/barbican-functional.conf b/etc/barbican/barbican-functional.conf index b9ce2bcfb..a8f17109e 100644 --- a/etc/barbican/barbican-functional.conf +++ b/etc/barbican/barbican-functional.conf @@ -2,7 +2,7 @@ [identity] # Replace these with values that represent your identity configuration -uri=http://localhost:5000/v3 +uri=http://localhost/identity/v3 version=v3 # Default user credentials diff --git a/functionaltests/common/config.py b/functionaltests/common/config.py index a83458b7d..4722fc30f 100644 --- a/functionaltests/common/config.py +++ b/functionaltests/common/config.py @@ -26,7 +26,7 @@ def setup_config(config_file=''): identity_group = cfg.OptGroup(name='identity') identity_options = [ - cfg.StrOpt('uri', default='http://localhost:5000/v3'), + cfg.StrOpt('uri', default='http://localhost/identity/v3'), cfg.StrOpt('version', default='v3'), cfg.StrOpt('username', default='admin'), cfg.StrOpt('password', default='secretadmin', secret=True),