-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[Network] Bump to azure-mgmt-network 8.0.0 #12021
Conversation
bump sdk and add test fix all test add history
src/azure-cli/HISTORY.rst
Outdated
@@ -82,6 +82,7 @@ Release History | |||
**Network** | |||
|
|||
* Fix #2092: az network dns record-set add/remove: add warning when record-set is not found. In the future, an extra argument will be supported to confirm this auto creation. | |||
* Bump azure-mgmt-network to 9.0.0 |
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 could be removed now.
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.
ok.
tools/automation/tests/main.py
Outdated
@@ -33,7 +33,7 @@ def run_tests(modules, parallel, run_live, tests): | |||
test_paths = tests or [p for _, _, p in modules] | |||
|
|||
display('Drive test by nosetests') | |||
runner = get_nose_runner(parallel=parallel, process_timeout=3600 if run_live else 600) | |||
runner = get_nose_runner(parallel=parallel, process_timeout=3600 if run_live else 1200) |
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.
@fengzhou-msft do you know how to debug this script?
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.
I haven't worked with nose runner, ping @haroldrandom
b189e77
to
cd10054
Compare
@@ -760,6 +760,7 @@ def load_arguments(self, _): | |||
c.argument('private_endpoint_connections', nargs='+', help='Space-separated list of private endpoint connections.') | |||
c.argument('fqdns', nargs='+', help='Space-separated list of FQDNs.') | |||
c.argument('location', get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group) | |||
c.argument('enable_proxy_protocol', help='Enable proxy protocol for private link service.', arg_type=get_three_state_flag(), min_api='2019-09-01') |
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.
Is it new feature?
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.
yes
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.
Issue title need change to 8.0.0
Fix #11988
History Notes:
(Fill in the following template if multiple notes are needed, otherwise PR title will be used for history note.)
[Network] Bump to azure-mgmt-network 8.0.0
[Network] az network private-link-service update/create: support --enable-proxy-protocol
This 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.