Skip to content

Commit

Permalink
Fix restart to be in correct order
Browse files Browse the repository at this point in the history
  • Loading branch information
ejizba committed Oct 19, 2017
1 parent 647232f commit 343026f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/restartFunctionApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ import { startFunctionApp } from './startFunctionApp';
import { stopFunctionApp } from './stopFunctionApp';

export async function restartFunctionApp(explorer: AzureFunctionsExplorer, node?: FunctionAppNode): Promise<void> {
await startFunctionApp(explorer, node);
await stopFunctionApp(explorer, node);
await startFunctionApp(explorer, node);
}

0 comments on commit 343026f

Please sign in to comment.