Monkey patching 'thread'.

Fixes bug 1012381.

Change-Id: Icb7b2372df96d647fc6dcd4c4ebe72c8aa607f9d
This commit is contained in:
Rafael Durán Castañeda 2012-06-19 20:35:43 +02:00
parent 66a0b63dab
commit 3f9f77af19
1 changed files with 1 additions and 1 deletions

View File

@ -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