summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-keystone
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-10-21 10:14:48 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-10-21 10:14:48 -0400
commit86b80ab2e9cbb3a7dfc1164b0205eaffcf4f2363 (patch)
tree034877b096e0940feea060aab5faef80e15aa533 /meta-openstack/recipes-devtools/python/python-keystone
parent5cd2721115351f45681aecbf2cd6798b7082c2ac (diff)
downloadmeta-cloud-services-86b80ab2e9cbb3a7dfc1164b0205eaffcf4f2363.tar.gz
keystone: update for Juno rc1
We have three changes in a single commit: - A runtime substition fix controller IP values - When the substitions were moved for chef integration, the chef disabled path wasn't tested. This meant that %CONTROLLER_IP% remained in the final config files, and broke keystone startup. - The addition of oathlib to keystone depedencies - oauthlib is a juno dependency - A temporary patch to the apache httpd front end modules - At times keystone would fail to load via apache due to the inability to load localcontext from oslo. To work around these sporadic failures, an explicit import was added to the http front end module. This will be removed in the future. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-keystone')
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystone/keystone-explicitly-import-localcontext-from-oslo.me.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-keystone/keystone-explicitly-import-localcontext-from-oslo.me.patch b/meta-openstack/recipes-devtools/python/python-keystone/keystone-explicitly-import-localcontext-from-oslo.me.patch
new file mode 100644
index 0000000..5c152e0
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-keystone/keystone-explicitly-import-localcontext-from-oslo.me.patch
@@ -0,0 +1,32 @@
1From 0d6b66b2d5314b454a421bd22fcc8173baf0bc95 Mon Sep 17 00:00:00 2001
2From: Bruce Ashfield <bruce.ashfield@windriver.com>
3Date: Mon, 20 Oct 2014 15:59:33 -0400
4Subject: [PATCH] keystone: explicitly import localcontext from oslo.messaging
5
6When using apache as a front end to keystone, juno has a problem when
7authenticating clients due to a failure to import localcontext from
8oslo.
9
10We can work around this issue by doing the export explicitly in the
11entry routine versus in the library itself.
12
13Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
14---
15 httpd/keystone.py | 1 +
16 1 file changed, 1 insertion(+)
17
18diff --git a/httpd/keystone.py b/httpd/keystone.py
19index f5ce498c5152..b2b9285ad2ab 100644
20--- a/httpd/keystone.py
21+++ b/httpd/keystone.py
22@@ -32,6 +32,7 @@ from keystone.common import sql
23 from keystone import config
24 from keystone.openstack.common import log
25 from keystone import service
26+from oslo.messaging import localcontext
27
28
29 CONF = config.CONF
30--
311.9.1
32