From 10e42323090c20745a9b0432a286ee09fa922384 Mon Sep 17 00:00:00 2001 From: kevinzz6 <632604666@qq.com> Date: Mon, 26 Aug 2024 15:35:41 +0800 Subject: [PATCH] {Synapse} remove https://github.mydomain.com.do in help msg (#29636) Co-authored-by: v-weishuzhao --- .../azure/cli/command_modules/synapse/manual/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py index 49963f47717..6bbd033f3f2 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py @@ -94,7 +94,7 @@ def load_arguments(self, _): c.argument('allowed_aad_tenant_ids', options_list=['--allowed-tenant-ids'], nargs='+', help="The approved Azure AD tenants which outbound data traffic allowed to. The Azure AD tenant of the current user will be included by default. Use ""(\'""\' in PowerShell) to disable all allowed tenant ids.") c.argument('key_name', help='The workspace customer-managed key display name. All existing keys can be found using "az synapse workspace key list" cmdlet.') c.argument('repository_type', arg_group=repository_arg_group, arg_type=get_enum_type(['AzureDevOpsGit', 'GitHub']), validator=validate_repository_type, help='The repository configuration type.') - c.argument('host_name', arg_group=repository_arg_group, help='If using github Enterprise Server, provide sever URL like https://github.mydomain.com.Do not use this option with GitHub Enterprise Cloud.') + c.argument('host_name', arg_group=repository_arg_group, help='If using github Enterprise Server, provide sever URL. Do not use this option with GitHub Enterprise Cloud.') c.argument('account_name', arg_group=repository_arg_group, help='GitHub account name used for the repository or Azure devops organization name') c.argument('collaboration_branch', arg_group=repository_arg_group, help='The branch name where you will collaborate with others and from which you will publish.') c.argument('repository_name', arg_group=repository_arg_group, help='The name of the repository to which you are connecting.')