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

Unified Diff: appengine/swarming/message_conversion.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/handlers_bot.py ('k') | appengine/swarming/server/task_result.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/message_conversion.py
diff --git a/appengine/swarming/message_conversion.py b/appengine/swarming/message_conversion.py
index f1c669702a8733987a6ec386456c4c0f97f51ca5..03ea712c35eb44e5d3838a4a8b069898cf169eff 100644
--- a/appengine/swarming/message_conversion.py
+++ b/appengine/swarming/message_conversion.py
@@ -176,10 +176,10 @@ def task_result_to_rpc(entity, send_stats):
swarming_rpcs.PerformanceStats,
entity.performance_stats,
isolated_download=_ndb_to_rpc(
- swarming_rpcs.IsolatedOperation,
+ swarming_rpcs.OperationStats,
entity.performance_stats.isolated_download),
isolated_upload=_ndb_to_rpc(
- swarming_rpcs.IsolatedOperation,
+ swarming_rpcs.OperationStats,
entity.performance_stats.isolated_upload))
kwargs = {
'bot_dimensions': _string_list_pairs_from_dict(entity.bot_dimensions or {}),
« no previous file with comments | « appengine/swarming/handlers_bot.py ('k') | appengine/swarming/server/task_result.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698