We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents accc168 + 2345074 commit 976b5f9Copy full SHA for 976b5f9
scripts/parallel-client.py
@@ -27,7 +27,6 @@
27
import requests
28
import numpy as np
29
import ssl
30
-import sys
31
import time
32
import urllib3
33
@@ -265,7 +264,10 @@ async def run_async_httpx(args):
265
264
266
267
def main():
268
- urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)
+ try:
+ urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)
269
+ except:
270
+ pass
271
args = get_args()
272
start = time.time()
273
num_errors = 0
scripts/requirements.txt
@@ -2,3 +2,4 @@ numcodecs
2
numpy
3
requests
4
s3fs
5
+httpx
0 commit comments