It was a bug in requests-unixsocket
- Update to 10.0.1
* Fixed a flaw where internally unhandled exceptions could crash the
worker threads and eventually starve the server of its processing
resources.
* Fixed compatibility with Python 3.8 in the built-in TLS adapter that
relies on :pypython:ssl.
OBS-URL: https://build.opensuse.org/request/show/1176149
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cheroot?expand=0&rev=63
102 lines
3.6 KiB
Diff
102 lines
3.6 KiB
Diff
---
|
|
cheroot/ssl/builtin.py | 10 +++++-----
|
|
cheroot/test/conftest.py | 6 +++---
|
|
cheroot/test/test_server.py | 8 ++++----
|
|
cheroot/test/test_ssl.py | 12 ++++++------
|
|
4 files changed, 18 insertions(+), 18 deletions(-)
|
|
|
|
Index: cheroot-10.0.1/cheroot/ssl/builtin.py
|
|
===================================================================
|
|
--- cheroot-10.0.1.orig/cheroot/ssl/builtin.py
|
|
+++ cheroot-10.0.1/cheroot/ssl/builtin.py
|
|
@@ -25,10 +25,10 @@ except ImportError:
|
|
except ImportError:
|
|
DEFAULT_BUFFER_SIZE = -1
|
|
|
|
-from . import Adapter
|
|
-from .. import errors
|
|
-from ..makefile import StreamReader, StreamWriter
|
|
-from ..server import HTTPServer
|
|
+from cheroot.ssl import Adapter
|
|
+from cheroot import errors
|
|
+from cheroot.makefile import StreamReader, StreamWriter
|
|
+from cheroot.server import HTTPServer
|
|
|
|
|
|
def _assert_ssl_exc_contains(exc, *msgs):
|
|
Index: cheroot-10.0.1/cheroot/test/conftest.py
|
|
===================================================================
|
|
--- cheroot-10.0.1.orig/cheroot/test/conftest.py
|
|
+++ cheroot-10.0.1/cheroot/test/conftest.py
|
|
@@ -9,15 +9,15 @@ import time
|
|
|
|
import pytest
|
|
|
|
-from .._compat import IS_MACOS, IS_WINDOWS # noqa: WPS436
|
|
-from ..server import Gateway, HTTPServer
|
|
-from ..testing import ( # noqa: F401 # pylint: disable=unused-import
|
|
+from cheroot._compat import IS_MACOS, IS_WINDOWS # noqa: WPS436
|
|
+from cheroot.server import Gateway, HTTPServer
|
|
+from cheroot.testing import ( # noqa: F401 # pylint: disable=unused-import
|
|
native_server,
|
|
thread_and_wsgi_server,
|
|
thread_and_native_server,
|
|
wsgi_server,
|
|
)
|
|
-from ..testing import get_server_client
|
|
+from cheroot.testing import get_server_client
|
|
|
|
|
|
@pytest.fixture
|
|
Index: cheroot-10.0.1/cheroot/test/test_server.py
|
|
===================================================================
|
|
--- cheroot-10.0.1.orig/cheroot/test/test_server.py
|
|
+++ cheroot-10.0.1/cheroot/test/test_server.py
|
|
@@ -13,11 +13,11 @@ import pytest
|
|
import requests
|
|
import requests_unixsocket
|
|
|
|
-from .._compat import bton, ntob
|
|
-from .._compat import IS_LINUX, IS_MACOS, IS_WINDOWS, SYS_PLATFORM
|
|
-from ..server import IS_UID_GID_RESOLVABLE, Gateway, HTTPServer
|
|
-from ..workers.threadpool import ThreadPool
|
|
-from ..testing import (
|
|
+from cheroot._compat import bton, ntob
|
|
+from cheroot._compat import IS_LINUX, IS_MACOS, IS_WINDOWS, SYS_PLATFORM
|
|
+from cheroot.server import IS_UID_GID_RESOLVABLE, Gateway, HTTPServer
|
|
+from cheroot.workers.threadpool import ThreadPool
|
|
+from cheroot.testing import (
|
|
ANY_INTERFACE_IPV4,
|
|
ANY_INTERFACE_IPV6,
|
|
EPHEMERAL_PORT,
|
|
Index: cheroot-10.0.1/cheroot/test/test_ssl.py
|
|
===================================================================
|
|
--- cheroot-10.0.1.orig/cheroot/test/test_ssl.py
|
|
+++ cheroot-10.0.1/cheroot/test/test_ssl.py
|
|
@@ -16,11 +16,11 @@ import pytest
|
|
import requests
|
|
import trustme
|
|
|
|
-from .._compat import bton, ntob, ntou
|
|
-from .._compat import IS_ABOVE_OPENSSL10, IS_CI, IS_PYPY
|
|
-from .._compat import IS_LINUX, IS_MACOS, IS_WINDOWS
|
|
-from ..server import HTTPServer, get_ssl_adapter_class
|
|
-from ..testing import (
|
|
+from cheroot._compat import bton, ntob, ntou
|
|
+from cheroot._compat import IS_ABOVE_OPENSSL10, IS_CI, IS_PYPY
|
|
+from cheroot._compat import IS_LINUX, IS_MACOS, IS_WINDOWS
|
|
+from cheroot.server import HTTPServer, get_ssl_adapter_class
|
|
+from cheroot.testing import (
|
|
ANY_INTERFACE_IPV4,
|
|
ANY_INTERFACE_IPV6,
|
|
EPHEMERAL_PORT,
|
|
@@ -28,7 +28,7 @@ from ..testing import (
|
|
_get_conn_data,
|
|
_probe_ipv6_sock,
|
|
)
|
|
-from ..wsgi import Gateway_10
|
|
+from cheroot.wsgi import Gateway_10
|
|
|
|
|
|
IS_GITHUB_ACTIONS_WORKFLOW = bool(os.getenv('GITHUB_WORKFLOW'))
|