Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes to test scripts #94

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading