Skip to content

Commit 5fe32a4

Browse files
committed
verify=False
Signed-off-by: oliver könig <[email protected]>
1 parent 952f09d commit 5fe32a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nemo_run/core/execution/dgxcloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def status(self, job_id: str) -> Optional[DGXCloudState]:
350350
def _stream_url_sync(self, url: str, queue: queue.Queue):
351351
"""Stream a single URL using requests and put chunks into the queue"""
352352
try:
353-
with requests.get(url, stream=True, insecure=True) as response:
353+
with requests.get(url, stream=True, verify=False) as response:
354354
for line in response.iter_lines():
355355
queue.put(line)
356356
except Exception as e:

0 commit comments

Comments
 (0)