remove logic now that we have fix in vscode-azurefunctions (#19353)

This commit is contained in:
Vasu Bhog
2022-05-12 15:48:59 -07:00
committed by GitHub
parent 63c6c0631e
commit f53f4fc522
3 changed files with 0 additions and 9 deletions

View File

@@ -209,12 +209,6 @@ export async function createAzureFunction(node?: ITreeNodeInfo): Promise<void> {
telemetryStep = CreateAzureFunctionStep.getTemplateId;
let templateId: string = selectedBindingType === BindingType.input ? constants.inputTemplateID : constants.outputTemplateID;
// We need to set the azureWebJobsStorage to a placeholder
// to suppress the warning for opening the wizard - but will ask them to overwrite if they are creating new azureFunction
// issue https://github.com/microsoft/azuredatastudio/issues/18780
telemetryStep = CreateAzureFunctionStep.setAzureWebJobsStorage;
await azureFunctionsUtils.setLocalAppSetting(projectFolder, constants.azureWebJobsStorageSetting, constants.azureWebJobsStoragePlaceholder);
// prompt for Connection String Setting Name
let connectionStringSettingName: string | undefined = constants.sqlConnectionStringSetting;
if (!isCreateNewProject && projectFile) {