Skip to content
Closed
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: 3 additions & 3 deletions doc/how_to_introduce_breaking_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,13 +319,13 @@ This way, the pre-announcement wouldn't be displayed unless running into the bra
Before you publish the breaking changes, you need to make sure that the announcement is ready for the Upcoming Breaking Change Documentation. To do that, run this command:

```commandline
azdev genereate-breaking-change-report
azdev generate-breaking-change-report
```

If your breaking change is not for the next breaking change window, you can see all the announcements by using `--target-version None` like this:

```commandline
azdev genereate-breaking-change-report --target-version None
azdev generate-breaking-change-report --target-version None
```

The output should be a JSON object including the pre-announcement you made.
Expand All @@ -347,5 +347,5 @@ The Upcoming Breaking Change Documentation includes:
The documentation is generated through `azdev` tool. You can preview the documentation locally through the following command.

```commandline
azdev genereate-breaking-change-report CLI --output-format markdown
azdev generate-breaking-change-report CLI --output-format markdown
```
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/command_modules/acr/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def acr_login(cmd,
_, stderr = p.communicate()
return_code = p.returncode

if stderr:
if stderr or return_code != 0: # when docker command process returns non-zero
if b'error storing credentials' in stderr and b'stub received bad data' in stderr \
and _check_wincred(login_server):
# Retry once after disabling wincred
Expand Down