| Index: appengine/swarming/ui/res/imp/botlist/bot-list.html
|
| diff --git a/appengine/swarming/ui/res/imp/botlist/bot-list.html b/appengine/swarming/ui/res/imp/botlist/bot-list.html
|
| index cbdfdb360eb7a7dc2fa4f4edbf0ca199ea62e7da..3789bfb0ab0042588594f17df6852cbb95b5c204 100644
|
| --- a/appengine/swarming/ui/res/imp/botlist/bot-list.html
|
| +++ b/appengine/swarming/ui/res/imp/botlist/bot-list.html
|
| @@ -404,6 +404,18 @@
|
| if (msg === UNKNOWN || msg === "true" || msg === true) {
|
| msg = this._attribute(bot, "error");
|
| }
|
| + var errs = [];
|
| + // Show all the errors that are active on devices to make it more
|
| + // clear if this is a transient error (e.g. device is too hot)
|
| + // or if it is requires human interaction (e.g. device is unauthorized)
|
| + this._devices(bot).forEach(function(d){
|
| + if (d.state !== "available") {
|
| + errs.push(d.state);
|
| + }
|
| + });
|
| + if (errs.length) {
|
| + msg += " ["+errs.join(",")+"]";
|
| + }
|
| return "Quarantined: " + msg;
|
| }
|
| return "Alive";
|
|
|