diff --git a/src/commands/restartFunctionApp.ts b/src/commands/restartFunctionApp.ts index 8a51bb832..c363829fe 100644 --- a/src/commands/restartFunctionApp.ts +++ b/src/commands/restartFunctionApp.ts @@ -9,6 +9,6 @@ import { startFunctionApp } from './startFunctionApp'; import { stopFunctionApp } from './stopFunctionApp'; export async function restartFunctionApp(explorer: AzureFunctionsExplorer, node?: FunctionAppNode): Promise { - await startFunctionApp(explorer, node); await stopFunctionApp(explorer, node); + await startFunctionApp(explorer, node); }