From bfbb78827fea4993fbe0ab4ed3553658c463cf5b Mon Sep 17 00:00:00 2001 From: Candice Ye Date: Mon, 18 Jul 2022 17:40:40 -0700 Subject: [PATCH] Changed default values for high availability and service tier to accommodate rd fix (#20071) Co-authored-by: Candice Ye --- extensions/arc/package.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/extensions/arc/package.json b/extensions/arc/package.json index 1202e168b5..a193dced85 100644 --- a/extensions/arc/package.json +++ b/extensions/arc/package.json @@ -1148,7 +1148,10 @@ "displayName": "%arc.sql.service.tier.general.purpose%" } ], - "defaultValue": "BusinessCritical", + "defaultValue": { + "name": "BusinessCritical", + "displayName": "%arc.sql.service.tier.business.critical%" + }, "optionsType": "radio" } }, @@ -1180,7 +1183,10 @@ "displayName": "%arc.sql.three.replicas%" } ], - "defaultValue": "3", + "defaultValue": { + "name": "3", + "displayName": "%arc.sql.three.replicas%" + }, "optionsType": "radio" }, "dynamicOptions": { @@ -1194,7 +1200,10 @@ "displayName": "%arc.sql.one.replica%" } ], - "defaultValue": "1" + "defaultValue": { + "name": "1", + "displayName": "%arc.sql.one.replica%" + } } ] }