Merge "monkeypatch thread for keystoneclient"
This commit is contained in:
commit
d9e44bda05
@ -26,7 +26,6 @@ import os
|
||||
import pwd
|
||||
import re
|
||||
import sys
|
||||
import threading as stdlib_threading
|
||||
import time
|
||||
import uuid
|
||||
import functools
|
||||
@ -63,7 +62,6 @@ import six
|
||||
from six.moves import cPickle as pickle
|
||||
from six.moves.configparser import (ConfigParser, NoSectionError,
|
||||
NoOptionError, RawConfigParser)
|
||||
from six.moves.queue import Queue, Empty
|
||||
from six.moves import range
|
||||
from six.moves.urllib.parse import ParseResult
|
||||
from six.moves.urllib.parse import quote as _quote
|
||||
@ -74,6 +72,11 @@ import swift.common.exceptions
|
||||
from swift.common.http import is_success, is_redirection, HTTP_NOT_FOUND, \
|
||||
HTTP_PRECONDITION_FAILED, HTTP_REQUESTED_RANGE_NOT_SATISFIABLE
|
||||
|
||||
if six.PY3:
|
||||
stdlib_queue = eventlet.patcher.original('queue')
|
||||
else:
|
||||
stdlib_queue = eventlet.patcher.original('Queue')
|
||||
stdlib_threading = eventlet.patcher.original('threading')
|
||||
|
||||
# logging doesn't import patched as cleanly as one would like
|
||||
from logging.handlers import SysLogHandler
|
||||
@ -2333,7 +2336,7 @@ class GreenAsyncPile(object):
|
||||
def next(self):
|
||||
try:
|
||||
rv = self._responses.get_nowait()
|
||||
except Empty:
|
||||
except eventlet.queue.Empty:
|
||||
if self._inflight == 0:
|
||||
raise StopIteration()
|
||||
rv = self._responses.get()
|
||||
@ -2984,8 +2987,8 @@ class ThreadPool(object):
|
||||
|
||||
def __init__(self, nthreads=2):
|
||||
self.nthreads = nthreads
|
||||
self._run_queue = Queue()
|
||||
self._result_queue = Queue()
|
||||
self._run_queue = stdlib_queue.Queue()
|
||||
self._result_queue = stdlib_queue.Queue()
|
||||
self._threads = []
|
||||
self._alive = True
|
||||
|
||||
@ -3065,7 +3068,7 @@ class ThreadPool(object):
|
||||
while True:
|
||||
try:
|
||||
ev, success, result = queue.get(block=False)
|
||||
except Empty:
|
||||
except stdlib_queue.Empty:
|
||||
break
|
||||
|
||||
try:
|
||||
|
@ -407,7 +407,8 @@ def run_server(conf, logger, sock, global_conf=None):
|
||||
wsgi.WRITE_TIMEOUT = int(conf.get('client_timeout') or 60)
|
||||
|
||||
eventlet.hubs.use_hub(get_hub())
|
||||
eventlet.patcher.monkey_patch(all=False, socket=True)
|
||||
# NOTE(sileht): monkey-patching thread is required by python-keystoneclient
|
||||
eventlet.patcher.monkey_patch(all=False, socket=True, thread=True)
|
||||
eventlet_debug = config_true_value(conf.get('eventlet_debug', 'no'))
|
||||
eventlet.debug.hub_exceptions(eventlet_debug)
|
||||
wsgi_logger = NullLogger()
|
||||
|
@ -18,7 +18,6 @@ import time
|
||||
import eventlet
|
||||
import mock
|
||||
from contextlib import contextmanager
|
||||
from threading import Thread
|
||||
|
||||
from test.unit import FakeLogger
|
||||
from swift.common.middleware import ratelimit
|
||||
@ -28,6 +27,8 @@ from swift.common.memcached import MemcacheConnectionError
|
||||
from swift.common.swob import Request
|
||||
from swift.common import utils
|
||||
|
||||
threading = eventlet.patcher.original('threading')
|
||||
|
||||
|
||||
class FakeMemcache(object):
|
||||
|
||||
@ -313,10 +314,10 @@ class TestRateLimit(unittest.TestCase):
|
||||
req = Request.blank('/v/a/c')
|
||||
req.environ['swift.cache'] = FakeMemcache()
|
||||
|
||||
class rate_caller(Thread):
|
||||
class rate_caller(threading.Thread):
|
||||
|
||||
def __init__(self, parent):
|
||||
Thread.__init__(self)
|
||||
threading.Thread.__init__(self)
|
||||
self.parent = parent
|
||||
|
||||
def run(self):
|
||||
@ -356,10 +357,10 @@ class TestRateLimit(unittest.TestCase):
|
||||
req = Request.blank('/v/b/c')
|
||||
req.environ['swift.cache'] = FakeMemcache()
|
||||
|
||||
class rate_caller(Thread):
|
||||
class rate_caller(threading.Thread):
|
||||
|
||||
def __init__(self, parent):
|
||||
Thread.__init__(self)
|
||||
threading.Thread.__init__(self)
|
||||
self.parent = parent
|
||||
|
||||
def run(self):
|
||||
@ -505,11 +506,11 @@ class TestRateLimit(unittest.TestCase):
|
||||
req.method = 'PUT'
|
||||
req.environ = {}
|
||||
|
||||
class rate_caller(Thread):
|
||||
class rate_caller(threading.Thread):
|
||||
|
||||
def __init__(self, name):
|
||||
self.myname = name
|
||||
Thread.__init__(self)
|
||||
threading.Thread.__init__(self)
|
||||
|
||||
def run(self):
|
||||
for j in range(num_calls):
|
||||
|
@ -22,12 +22,14 @@ import resource
|
||||
import signal
|
||||
import errno
|
||||
from collections import defaultdict
|
||||
from threading import Thread
|
||||
from time import sleep, time
|
||||
|
||||
from swift.common import manager
|
||||
from swift.common.exceptions import InvalidPidFileException
|
||||
|
||||
import eventlet
|
||||
threading = eventlet.patcher.original('threading')
|
||||
|
||||
DUMMY_SIG = 1
|
||||
|
||||
|
||||
@ -1153,9 +1155,9 @@ class TestServer(unittest.TestCase):
|
||||
server = manager.Server('test')
|
||||
self.assertEqual(server.wait(), 0)
|
||||
|
||||
class MockProcess(Thread):
|
||||
class MockProcess(threading.Thread):
|
||||
def __init__(self, delay=0.1, fail_to_start=False):
|
||||
Thread.__init__(self)
|
||||
threading.Thread.__init__(self)
|
||||
# setup pipe
|
||||
rfd, wfd = os.pipe()
|
||||
# subprocess connection to read stdout
|
||||
|
@ -40,7 +40,6 @@ from six.moves import range
|
||||
from textwrap import dedent
|
||||
|
||||
import tempfile
|
||||
import threading
|
||||
import time
|
||||
import traceback
|
||||
import unittest
|
||||
@ -64,6 +63,8 @@ from swift.common.container_sync_realms import ContainerSyncRealms
|
||||
from swift.common.swob import Request, Response, HeaderKeyDict
|
||||
from test.unit import FakeLogger
|
||||
|
||||
threading = eventlet.patcher.original('threading')
|
||||
|
||||
|
||||
class MockOs(object):
|
||||
|
||||
|
@ -379,7 +379,8 @@ class TestWSGI(unittest.TestCase):
|
||||
self.assertEqual(30, _wsgi.WRITE_TIMEOUT)
|
||||
_eventlet.hubs.use_hub.assert_called_with(utils.get_hub())
|
||||
_eventlet.patcher.monkey_patch.assert_called_with(all=False,
|
||||
socket=True)
|
||||
socket=True,
|
||||
thread=True)
|
||||
_eventlet.debug.hub_exceptions.assert_called_with(False)
|
||||
self.assertTrue(_wsgi.server.called)
|
||||
args, kwargs = _wsgi.server.call_args
|
||||
@ -466,7 +467,8 @@ class TestWSGI(unittest.TestCase):
|
||||
self.assertEqual(30, _wsgi.WRITE_TIMEOUT)
|
||||
_eventlet.hubs.use_hub.assert_called_with(utils.get_hub())
|
||||
_eventlet.patcher.monkey_patch.assert_called_with(all=False,
|
||||
socket=True)
|
||||
socket=True,
|
||||
thread=True)
|
||||
_eventlet.debug.hub_exceptions.assert_called_with(False)
|
||||
self.assertTrue(_wsgi.server.called)
|
||||
args, kwargs = _wsgi.server.call_args
|
||||
@ -517,7 +519,8 @@ class TestWSGI(unittest.TestCase):
|
||||
self.assertEqual(30, _wsgi.WRITE_TIMEOUT)
|
||||
_eventlet.hubs.use_hub.assert_called_with(utils.get_hub())
|
||||
_eventlet.patcher.monkey_patch.assert_called_with(all=False,
|
||||
socket=True)
|
||||
socket=True,
|
||||
thread=True)
|
||||
_eventlet.debug.hub_exceptions.assert_called_with(True)
|
||||
self.assertTrue(mock_server.called)
|
||||
args, kwargs = mock_server.call_args
|
||||
|
@ -16,10 +16,12 @@
|
||||
# limitations under the License.
|
||||
|
||||
from __future__ import print_function
|
||||
import eventlet
|
||||
import os
|
||||
import unittest
|
||||
import sys
|
||||
import threading
|
||||
|
||||
threading = eventlet.patcher.original('threading')
|
||||
|
||||
try:
|
||||
from subprocess import check_output
|
||||
|
Loading…
Reference in New Issue
Block a user