Skip to content

Commit 343026f

Browse files
committed
Fix restart to be in correct order
1 parent 647232f commit 343026f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/restartFunctionApp.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ import { startFunctionApp } from './startFunctionApp';
99
import { stopFunctionApp } from './stopFunctionApp';
1010

1111
export async function restartFunctionApp(explorer: AzureFunctionsExplorer, node?: FunctionAppNode): Promise<void> {
12-
await startFunctionApp(explorer, node);
1312
await stopFunctionApp(explorer, node);
13+
await startFunctionApp(explorer, node);
1414
}

0 commit comments

Comments
 (0)