summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--swift/__init__.py4
-rw-r--r--test/__init__.py4
-rw-r--r--test/probe/test_sharder.py9
3 files changed, 15 insertions, 2 deletions
diff --git a/swift/__init__.py b/swift/__init__.py
index 88fc403ce..6168bdc8a 100644
--- a/swift/__init__.py
+++ b/swift/__init__.py
@@ -81,3 +81,7 @@ warnings.filterwarnings('ignore', module='cryptography|OpenSSL', message=(
'Python 2 is no longer supported by the Python core team. '
'Support for it is now deprecated in cryptography, '
'and will be removed in a future release.'))
+warnings.filterwarnings('ignore', message=(
+ 'Python 3.6 is no longer supported by the Python core team. '
+ 'Therefore, support for it is deprecated in cryptography '
+ 'and will be removed in a future release.'))
diff --git a/test/__init__.py b/test/__init__.py
index 363efb53c..22c63b9f4 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -42,6 +42,10 @@ warnings.filterwarnings('ignore', module='cryptography|OpenSSL', message=(
'Python 2 is no longer supported by the Python core team. '
'Support for it is now deprecated in cryptography, '
'and will be removed in a future release.'))
+warnings.filterwarnings('ignore', message=(
+ 'Python 3.6 is no longer supported by the Python core team. '
+ 'Therefore, support for it is deprecated in cryptography '
+ 'and will be removed in a future release.'))
from eventlet.green import socket
diff --git a/test/probe/test_sharder.py b/test/probe/test_sharder.py
index 3cf785a50..c369a4760 100644
--- a/test/probe/test_sharder.py
+++ b/test/probe/test_sharder.py
@@ -43,6 +43,11 @@ from test.probe.common import ReplProbeTest, get_server_number, \
from test.debug_logger import debug_logger
import mock
+try:
+ from swiftclient.requests_compat import requests as client_requests
+except ImportError:
+ # legacy location
+ from swiftclient.client import requests as client_requests
MIN_SHARD_CONTAINER_THRESHOLD = 4
MAX_SHARD_CONTAINER_THRESHOLD = 100
@@ -116,8 +121,8 @@ class BaseTestContainerSharding(ReplProbeTest):
def setUp(self):
client.logger.setLevel(client.logging.WARNING)
- client.requests.logging.getLogger().setLevel(
- client.requests.logging.WARNING)
+ client_requests.logging.getLogger().setLevel(
+ client_requests.logging.WARNING)
super(BaseTestContainerSharding, self).setUp()
_, self.admin_token = get_auth(
PROXY_BASE_URL + '/auth/v1.0', 'admin:admin', 'admin')