We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 647232f commit 343026fCopy full SHA for 343026f
src/commands/restartFunctionApp.ts
@@ -9,6 +9,6 @@ import { startFunctionApp } from './startFunctionApp';
9
import { stopFunctionApp } from './stopFunctionApp';
10
11
export async function restartFunctionApp(explorer: AzureFunctionsExplorer, node?: FunctionAppNode): Promise<void> {
12
- await startFunctionApp(explorer, node);
13
await stopFunctionApp(explorer, node);
+ await startFunctionApp(explorer, node);
14
}
0 commit comments