summaryrefslogtreecommitdiffstats
path: root/keystone/common/wsgi.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-06-20 23:07:48 +0000
committerGerrit Code Review <review@openstack.org>2012-06-20 23:07:48 +0000
commitd085f43875481c7d19cb08340b08e75b2202881a (patch)
tree0263b15c72a0205c3630bbcf4eae39cda2466699 /keystone/common/wsgi.py
parent79647c6bafed211158345bf57bf6b2150712e4b9 (diff)
parent3f9f77af19c748658629a460bc447fe7f2d0a410 (diff)
downloadkeystone-d085f43875481c7d19cb08340b08e75b2202881a.tar.gz
keystone-d085f43875481c7d19cb08340b08e75b2202881a.tar.xz
keystone-d085f43875481c7d19cb08340b08e75b2202881a.zip
Merge "Monkey patching 'thread'."
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 af57493f..4aaf682d 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