Skip to content

Commit

Permalink
Downgrade to appservice v2.1.1 from v.2.2.0 (#3779)
Browse files Browse the repository at this point in the history
To get the .funcignore fix without introducing the files/logs issues
  • Loading branch information
alexweininger authored Aug 1, 2023
1 parent 9ff463d commit 6dc8432
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@
"@azure/core-client": "^1.7.3",
"@azure/core-rest-pipeline": "^1.11.0",
"@azure/storage-blob": "^12.5.0",
"@microsoft/vscode-azext-azureappservice": "^2.2.0",
"@microsoft/vscode-azext-azureappservice": "^2.1.1",
"@microsoft/vscode-azext-azureappsettings": "^0.2.0",
"@microsoft/vscode-azext-azureutils": "^2.0.1",
"@microsoft/vscode-azext-utils": "^2.0.0",
Expand Down
7 changes: 1 addition & 6 deletions src/commands/remoteDebug/startRemoteDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,5 @@ export async function startRemoteDebug(context: IActionContext, node?: SlotTreeI
const appServicePlan = await siteClient.getAppServicePlan();
const language: appservice.RemoteDebugLanguage = getRemoteDebugLanguage(siteConfig, appServicePlan?.sku?.family);

await appservice.startRemoteDebug(context, {
site: node.site,
siteConfig,
language,
credentials: node.site.subscription.credentials,
});
await appservice.startRemoteDebug(context, node.site, siteConfig, language);
}

0 comments on commit 6dc8432

Please sign in to comment.