From d307c2e08407cb226914385688d10c53d51d9b3f Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sun, 10 May 2020 17:06:39 +0200 Subject: [PATCH] gevent: patch_all() instead of patch_all(httplib=True) --- bin/proxy.py | 2 +- bin/srv.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/proxy.py b/bin/proxy.py index 46fff69..49d2157 100644 --- a/bin/proxy.py +++ b/bin/proxy.py @@ -16,7 +16,7 @@ from __future__ import print_function from gevent.pywsgi import WSGIServer from gevent.monkey import patch_all -patch_all(httplib=True) +patch_all() # pylint: disable=wrong-import-position,wrong-import-order import sys diff --git a/bin/srv.py b/bin/srv.py index b664152..8d4f447 100644 --- a/bin/srv.py +++ b/bin/srv.py @@ -3,7 +3,7 @@ from gevent.pywsgi import WSGIServer from gevent.monkey import patch_all -patch_all(httplib=True) +patch_all() # pylint: disable=wrong-import-position,wrong-import-order import sys