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

Unified Diff: appengine/swarming/swarming_rpcs.py

Issue 1925343002: swarming: IsolatedOperation -> OperationStats (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: update comment Created 4 years, 8 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/server/task_scheduler_test.py ('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 ccab35a061142d1288e25d60de1359c2bec8ef17..b9f61c49be939eb7e19bb2c80fd987a54a2f3060 100644
--- a/appengine/swarming/swarming_rpcs.py
+++ b/appengine/swarming/swarming_rpcs.py
@@ -174,7 +174,7 @@ class TasksCountRequest(messages.Message):
### Task-Related Responses
-class IsolatedOperation(messages.Message):
+class OperationStats(messages.Message):
duration = messages.FloatField(1)
initial_number_items = messages.IntegerField(2)
initial_size = messages.IntegerField(3)
@@ -187,8 +187,8 @@ class IsolatedOperation(messages.Message):
class PerformanceStats(messages.Message):
bot_overhead = messages.FloatField(1)
- isolated_download = messages.MessageField(IsolatedOperation, 2)
- isolated_upload = messages.MessageField(IsolatedOperation, 3)
+ isolated_download = messages.MessageField(OperationStats, 2)
+ isolated_upload = messages.MessageField(OperationStats, 3)
class CancelResponse(messages.Message):
« no previous file with comments | « appengine/swarming/server/task_scheduler_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698