remove extra error message (#19110) (#19113)

This commit is contained in:
Vasu Bhog
2022-04-14 16:55:52 -07:00
committed by GitHub
parent fd0a8c0ef4
commit aeaf0ef473

View File

@@ -78,7 +78,6 @@ export async function createAzureFunction(node?: ITreeNodeInfo): Promise<void> {
} }
} catch (e) { } catch (e) {
void vscode.window.showErrorMessage(utils.getErrorMessage(e));
propertyBag.quickPickStep = quickPickStep; propertyBag.quickPickStep = quickPickStep;
exitReason = 'error'; exitReason = 'error';
TelemetryReporter.createErrorEvent(TelemetryViews.CreateAzureFunctionWithSqlBinding, TelemetryActions.exitCreateAzureFunctionQuickpick, undefined, utils.getErrorType(e)) TelemetryReporter.createErrorEvent(TelemetryViews.CreateAzureFunctionWithSqlBinding, TelemetryActions.exitCreateAzureFunctionQuickpick, undefined, utils.getErrorType(e))