-
Notifications
You must be signed in to change notification settings - Fork 3.3k
OSA - Remove FQDN parameters and update ensure_osa_aad flow #9083
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
mboersma
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, I just had a question about LongRunningOperation.
| resource_group_name=resource_group_name, resource_name=name, parameters=osamc) | ||
| result = sdk_no_wait(no_wait, client.create_or_update, | ||
| resource_group_name=resource_group_name, resource_name=name, parameters=osamc) | ||
| result = LongRunningOperation(cmd.cli_ctx)(result) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't use result after this point in this method. Should it be returned? Why are we making a LongRunningOperation out of it if it isn't used?
| =============== | ||
| 2.3.22 | ||
| ++++++ | ||
| * Removing `--fqdn` flag on az openshift commands |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a breaking change and cannot be done with a simple patch version. This needs to call out the breaking change and be bumped to version 2.4.0
# Conflicts: # src/command_modules/azure-cli-acs/HISTORY.rst # src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/_help.py # src/command_modules/azure-cli-acs/azure/cli/command_modules/acs/custom.py
|
@tjprescott can you give another look please ? Thanks |
This checklist is used to make sure that common guidelines for a pull request are followed.
The PR has modified HISTORY.rst describing any customer-facing, functional changes. Note that this does not include changes only to help content. (see Modifying change log).
I adhere to the Command Guidelines.