summaryrefslogtreecommitdiffstats
path: root/keystone/common/wsgi.py
diff options
context:
space:
mode:
authorRafael Durán Castañeda <rafadurancastaneda@gmail.com>2012-06-19 20:35:43 +0200
committerRafael Durán Castañeda <rafadurancastaneda@gmail.com>2012-06-19 20:40:05 +0200
commit3f9f77af19c748658629a460bc447fe7f2d0a410 (patch)
treea20b6e484c60fac57e031f91609753eda47da157 /keystone/common/wsgi.py
parent66a0b63dabffe4cb1d239be3ab68885e2f49f513 (diff)
downloadkeystone-3f9f77af19c748658629a460bc447fe7f2d0a410.tar.gz
keystone-3f9f77af19c748658629a460bc447fe7f2d0a410.tar.xz
keystone-3f9f77af19c748658629a460bc447fe7f2d0a410.zip
Monkey patching 'thread'.
Fixes bug 1012381. Change-Id: Icb7b2372df96d647fc6dcd4c4ebe72c8aa607f9d
Diffstat (limited to 'keystone/common/wsgi.py')
-rw-r--r--keystone/common/wsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/common/wsgi.py b/keystone/common/wsgi.py
index 5bd958ca..19926f5b 100644
--- a/keystone/common/wsgi.py
+++ b/keystone/common/wsgi.py
@@ -24,7 +24,7 @@ import json
import sys
import eventlet.wsgi
-eventlet.patcher.monkey_patch(all=False, socket=True, time=True)
+eventlet.patcher.monkey_patch(all=False, socket=True, time=True, thread=True)
import routes.middleware
import ssl
import webob.dec