-
Notifications
You must be signed in to change notification settings - Fork 268
Closed
Labels
Description
Which looks suspicious, we need to double check if the worker is really gone
"reason": "vm not found in state running",
This happens during worker scanner loop and we try to fetch:
taskcluster/services/worker-manager/src/providers/azure/index.js
Lines 1580 to 1583 in ad092b1
| const instanceView = await this._enqueue('get', () => this.computeClient.virtualMachines.instanceView( | |
| worker.providerData.resourceGroupName, | |
| worker.providerData.vm.name, | |
| )); |
if that gives us 404 for some reason we assume VM is dead, and deprovision it right away
Check if we could double-verify this somehow before immediately removing worker
Reactions are currently unavailable