Skip to content

Commit 334162c

Browse files
authored
[ACR] az acr task logs: Enable TLS certificate validation when streaming task and run logs (#33486)
1 parent 9fe8f1f commit 334162c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/azure-cli/azure/cli/command_modules/acr/_stream_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def _stream_artifact_logs(log_file_sas,
206206
colorama.init()
207207

208208
try:
209-
response = requests.get(log_file_sas, timeout=3, verify=False, stream=True)
209+
response = requests.get(log_file_sas, timeout=3, stream=True)
210210
response.raise_for_status()
211211
except KeyboardInterrupt:
212212
return

0 commit comments

Comments
 (0)