Bug fixes for DC upgrade in arc extension (#19161)

* Removed configure retention policy link. Log errors for upgrade instead of blocking the upgrade. Changed text of version log link.

* Addressing comments on PR

Co-authored-by: Candice Ye <canye@microsoft.com>
This commit is contained in:
Candice Ye
2022-04-20 16:20:52 -07:00
committed by GitHub
parent 6acda40894
commit 0718876300
3 changed files with 6 additions and 24 deletions

View File

@@ -117,7 +117,6 @@ export class AzTool implements azExt.IAzApi {
// Direct mode argument
if (resourceGroup) { argsArray.push('--resource-group', resourceGroup); }
// Indirect mode arguments
if (namespace) { argsArray.push('--k8s-namespace', namespace); }
if (usek8s) { argsArray.push('--use-k8s'); }
return this.executeCommand<void>(argsArray, additionalEnvVars);