Skip to content

Commit

Permalink
Merge pull request #70 from PierreBeucher/fix-azure-start
Browse files Browse the repository at this point in the history
fix: Azure start should use start() and not restart() function
  • Loading branch information
PierreBeucher authored Nov 30, 2024
2 parents 129254c + 7fc38aa commit 02074d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/azure/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class AzureInstanceRunner extends AbstractInstanceRunner {
const vmName = this.getVmName()
const resourceGroupName = this.getResourceGroupName()

await this.client.restartInstance(resourceGroupName, vmName)
await this.client.startInstance(resourceGroupName, vmName)
}

async stop() {
Expand Down

0 comments on commit 02074d2

Please sign in to comment.