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 3d8ac89 commit 0a87ba9Copy full SHA for 0a87ba9
src/azure-cli/azure/cli/command_modules/acr/custom.py
@@ -324,7 +324,7 @@ def acr_login(cmd,
324
_, stderr = p.communicate()
325
return_code = p.returncode
326
327
- if stderr:
+ if stderr or return_code != 0:
328
if b'error storing credentials' in stderr and b'stub received bad data' in stderr \
329
and _check_wincred(login_server):
330
# Retry once after disabling wincred
0 commit comments