Skip to content

Commit c78f226

Browse files
Copilotnturinski
andauthored
Fix missing SQL database configuration dialog for Flex Consumption deployments (#4842)
* Initial plan * fix: remove !isFlexConsumption check to show SQL database config dialog for Flex Consumption apps Co-authored-by: nturinski <5290572+nturinski@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: nturinski <5290572+nturinski@users.noreply.github.com>
1 parent 4a31837 commit c78f226

File tree

2 files changed

+3
-22
lines changed

2 files changed

+3
-22
lines changed

package-lock.json

Lines changed: 2 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/deploy/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async function deploy(actionContext: IActionContext, arg1: vscode.Uri | string |
162162
const durableStorageType: DurableBackend | undefined = await durableUtils.getStorageTypeFromWorkspace(language, context.projectPath);
163163
context.telemetry.properties.durableStorageType = durableStorageType;
164164

165-
if (durableStorageType && !isFlexConsumption) {
165+
if (durableStorageType) {
166166
switch (durableStorageType) {
167167
case DurableBackend.DTS:
168168
Object.assign(context, await getDTSConnectionIfNeeded(Object.assign(context, subscriptionContext), appSettings, site, context.projectPath));

0 commit comments

Comments
 (0)