Skip to content

Commit

Permalink
Merge pull request #94 from stackhpc/fix/client-tweaks
Browse files Browse the repository at this point in the history
Minor fixes to test scripts
  • Loading branch information
markgoddard authored Sep 16, 2024
2 parents accc168 + 2345074 commit 976b5f9
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 976b5f9

Please sign in to comment.