From bd65920def685e6a02ec396aa5c392336929c3c6 Mon Sep 17 00:00:00 2001 From: Tristan Cacqueray Date: Tue, 4 Mar 2014 13:14:42 +0000 Subject: [PATCH] Fix glance registry eventlet monkey patchs --- glance/cmd/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glance/cmd/registry.py b/glance/cmd/registry.py index 1668725..26b0f0d 100755 --- a/glance/cmd/registry.py +++ b/glance/cmd/registry.py @@ -27,7 +27,7 @@ import os import sys # Monkey patch socket and time -eventlet.patcher.monkey_patch(all=False, socket=True, time=True) +eventlet.patcher.monkey_patch(all=False, socket=True, time=True, thread=True) # If ../glance/__init__.py exists, add ../ to Python search path, so that # it will override what happens to be installed in /usr/(local/)lib/python... -- 1.7.9.5