Skip to content

Commit fce12b2

Browse files
authored
Fix a Netherite connection setting boolean (#4855)
1 parent bf99808 commit fce12b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/deploy/verifyAppSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export async function verifyAndUpdateAppConnectionStrings(context: IActionContex
8383
let didUpdate: boolean = false;
8484
switch (durableStorageType) {
8585
case DurableBackend.Netherite:
86-
if (context.newEventHubsNamespaceConnectionSettingKey && context.newEventHubConnectionSettingValue) {
86+
if (context.newEventHubsNamespaceConnectionSettingKey && context.newEventHubsNamespaceConnectionSettingValue) {
8787
const updatedNamespaceConnection: boolean = updateConnectionStringIfNeeded(context, remoteProperties, context.newEventHubsNamespaceConnectionSettingKey, context.newEventHubsNamespaceConnectionSettingValue);
8888
didUpdate ||= updatedNamespaceConnection;
8989
}

0 commit comments

Comments
 (0)