Get rid of thread=False monkey-patching hack

I can no longer reproduce the bug on any of my systems
and Eventlet 0.16 should fix Python 3k.

Closes-Bug: #1410709
Change-Id: Id933f5c4dd3af1838db50941bf42bd21a31a2122
This commit is contained in:
Dmitry Tantsur 2015-02-09 12:55:47 +01:00
parent a66c73500c
commit 51551b5984
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
from __future__ import print_function
import eventlet
eventlet.monkey_patch(thread=False)
eventlet.monkey_patch()
import os
import re

View File

@ -12,7 +12,7 @@
# limitations under the License.
import eventlet
eventlet.monkey_patch(thread=False)
eventlet.monkey_patch()
import argparse
import functools

View File

@ -12,4 +12,4 @@
# limitations under the License.
import eventlet
eventlet.monkey_patch(thread=False)
eventlet.monkey_patch()