Sheriffing/How To/Intermittent bugs: Difference between revisions

→‎Machine-specific failures: add instructions to terminate all machines
(→‎Machine-specific failures: further steps for replacing taskcluster executable)
(→‎Machine-specific failures: add instructions to terminate all machines)
Line 148: Line 148:
The command to run is:
The command to run is:
<code>taskcluster api workerManager removeWorker gecko-3/b-linux aws i-07985396a2efa2ed1</code>
<code>taskcluster api workerManager removeWorker gecko-3/b-linux aws i-07985396a2efa2ed1</code>
Terminating all machines in a worker pool:
Save the worker pool name in a variable. In this case for <code>wp=gecko-3/decision</code>:
<code>wp=gecko-3/decision</code>
Run this script to terminate all machines in that pool:
<code>taskcluster api workerManager listWorkersForWorkerPool $wp | jq -r '.workers[] | .workerGroup + " " + .workerId' | while read wg wid; do taskcluster api workerManager removeWorker $wp $wg $wid; done</code>


== How to file a security bug ==
== How to file a security bug ==
Confirmed users
571

edits