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.
1 parent 952f09d commit 5fe32a4Copy full SHA for 5fe32a4
nemo_run/core/execution/dgxcloud.py
@@ -350,7 +350,7 @@ def status(self, job_id: str) -> Optional[DGXCloudState]:
350
def _stream_url_sync(self, url: str, queue: queue.Queue):
351
"""Stream a single URL using requests and put chunks into the queue"""
352
try:
353
- with requests.get(url, stream=True, insecure=True) as response:
+ with requests.get(url, stream=True, verify=False) as response:
354
for line in response.iter_lines():
355
queue.put(line)
356
except Exception as e:
0 commit comments