Skip to content

Commit 02bc324

Browse files
authored
Merge pull request #21 from liisberg/master
deprecate TLS 1.1
2 parents f5486ae + e9e9afd commit 02bc324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickpay_api_client/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def init_poolmanager(self, connections, maxsize, block=False):
1616
self.poolmanager = PoolManager(num_pools=connections,
1717
maxsize=maxsize,
1818
block=block,
19-
ssl_version=ssl.PROTOCOL_TLSv1_1)
19+
ssl_version=ssl.PROTOCOL_TLSv1_2)
2020

2121

2222
class QPApi(object):

0 commit comments

Comments
 (0)