We use the AppServicePlanListStep on the logic apps vscode extension when trying to create a new resource in azure.
However we have noticed that the AppServicePlanListStep take a long time to load the quickpicks. There are some users that it takes more than 2 minutes.
I did a quick time measurement on our side and the const epPlan: AppServicePlan | undefined = await tryGetAppServicePlan(client, nonNullProp(plan, 'resourceGroup'), nonNullProp(plan, 'name')); its the one function that takes a long time to be executed (I understand it does make API calls).
Is there something we can do to improve the performance on getting the quick picks?
We use the
AppServicePlanListStepon the logic apps vscode extension when trying to create a new resource in azure.However we have noticed that the
AppServicePlanListSteptake a long time to load the quickpicks. There are some users that it takes more than 2 minutes.I did a quick time measurement on our side and the
const epPlan: AppServicePlan | undefined = await tryGetAppServicePlan(client, nonNullProp(plan, 'resourceGroup'), nonNullProp(plan, 'name'));its the one function that takes a long time to be executed (I understand it does make API calls).Is there something we can do to improve the performance on getting the quick picks?