Skip to content

Commit

Permalink
Minor fixes to test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Davidson committed Sep 13, 2024
1 parent 48565f8 commit 2345074
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/parallel-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import requests
import numpy as np
import ssl
import sys
import time
import urllib3

Expand Down Expand Up @@ -265,7 +264,10 @@ async def run_async_httpx(args):


def main():
urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)
try:
urllib3.disable_warnings(urllib3.exceptions.SubjectAltNameWarning)
except:
pass
args = get_args()
start = time.time()
num_errors = 0
Expand Down
1 change: 1 addition & 0 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ numcodecs
numpy
requests
s3fs
httpx

0 comments on commit 2345074

Please sign in to comment.