-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
[AppService] az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output for webapps with Linux OS
#30673
Conversation
️✔️AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
Pinging @jvano for review |
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
az webapp list-runtimes --os linux
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
az webapp list-runtimes --os linux
az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output of az webapp list-runtimes --os linux
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output of az webapp list-runtimes --os linux
az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output of 'az webapp list-runtimes --os linux'
/azp run |
Commenter does not have sufficient privileges for PR 30673 in repo Azure/azure-cli |
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
@yonzhan all checks passed except the check for Pull Request Title and Content. The error reads:
I'm not sure what's the issue since I've tried variants in between quotes and between backquotes and seemed to have the same issue. Feel free to edit the PR's title. Thanks! |
# Remove the JBoss'_byol' entries from the output | ||
runtimes = [(r, v, au) for (r, v, au) in runtimes if r is not None and not r.endswith("_byol")] # pylint: disable=line-too-long |
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.
May I ask if removing JBoss '_byol' entries will cause a breaking change for the customer?
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.
Not a breaking change, because the feature they belong to is not live yet and these entries should not be visible to users.
az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output of 'az webapp list-runtimes --os linux'az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output for webapp with Linux OS
az webapp list-runtimes
: Remove the JBoss '_byol' entries from the output for webapp with Linux OSaz webapp list-runtimes
: Remove the JBoss '_byol' entries from the output for webapps with Linux OS
Related command
az webapp list-runtimes
Description
App Service Linux uses internal variants of the JBoss EAP runtimes with a
_byol
suffix in their name and those should be removed from the output to avoid confusion.Testing Guide
Running
az webapp list-runtimes --os linux
should not contain any entries which had_byol
in their runtime name.Before:
After:
History Notes
[Component Name 1] BREAKING CHANGE:
az command a
: Make some customer-facing breaking change[Component Name 2]
az command b
: Add some customer-facing featureThis checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.