Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: appengine/swarming/swarming_rpcs.py

Issue 2220373003: Allow botlist API call to respond to quarantined: and is_dead: (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Change BotsRequest to have quarantined and is_dead Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/swarming/index.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/swarming_rpcs.py
diff --git a/appengine/swarming/swarming_rpcs.py b/appengine/swarming/swarming_rpcs.py
index e000c40a23e95d38870f85a7ca1422ca8a11a0a1..3e103bd71de68e1efd33a6faf8593a178fb93fa0 100644
--- a/appengine/swarming/swarming_rpcs.py
+++ b/appengine/swarming/swarming_rpcs.py
@@ -308,6 +308,8 @@ class BotsRequest(messages.Message):
# Must be a list of 'key:value' strings to filter the returned list of bots
# on.
dimensions = messages.StringField(3, repeated=True)
+ quarantined = messages.StringField(4, default='none')
M-A Ruel 2016/08/08 20:28:00 I was more thinking about tree-state-bool. Since t
kjlubick 2016/08/09 13:27:55 Done.
+ is_dead = messages.StringField(5, default='none')
class BotEventsRequest(messages.Message):
« no previous file with comments | « appengine/swarming/index.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698