summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Liu <liujiong@gohighsec.com>2017-11-13 10:09:22 +0800
committerJeremy Liu <liujiong@gohighsec.com>2017-11-13 10:51:06 +0800
commit15496e0c0faae83517aefe47df367841808867d8 (patch)
treebd03b184ce84358e548c14eadc6cbe179f235296
parent77eedac597fb99745751a049a11d0719c4b67a85 (diff)
downloadpython-barbicanclient-15496e0c0faae83517aefe47df367841808867d8.tar.gz
Switch to use new barbican endpoint
Change-Id: Ie5f8d146430d6a94c22ad0f5175f492ea1985d19
-rw-r--r--etc/functional_tests.conf2
-rw-r--r--functionaltests/common/config.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/functional_tests.conf b/etc/functional_tests.conf
index 9bff4ad..4ba58ee 100644
--- a/etc/functional_tests.conf
+++ b/etc/functional_tests.conf
@@ -3,7 +3,7 @@
[keymanager]
#Replace values that represent barbican server and user information
-url=http://localhost:9311
+url=http://localhost/key-manager
username=barbican
password=secretservice
project_name=service
diff --git a/functionaltests/common/config.py b/functionaltests/common/config.py
index 4cee242..dbe4f29 100644
--- a/functionaltests/common/config.py
+++ b/functionaltests/common/config.py
@@ -42,7 +42,7 @@ def setup_config(config_file=''):
keymanager_group = cfg.OptGroup(name='keymanager')
keymanager_options = [
- cfg.StrOpt('url', default='http://localhost:9311'),
+ cfg.StrOpt('url', default='http://localhost/key-manager'),
cfg.StrOpt('username', default='admin'),
cfg.StrOpt('password', default='secretadmin'),
cfg.StrOpt('project_name', default='admin'),