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

Unified Diff: client/run_isolated.py

Issue 2186263002: luci-py: Refactor file writing code to allow file objects. (Closed) Base URL: https://github.com/luci/luci-py.git@master
Patch Set: Rebase Created 4 years, 5 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 | « client/isolateserver.py ('k') | client/tests/isolateserver_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/run_isolated.py
diff --git a/client/run_isolated.py b/client/run_isolated.py
index 03af33a746c331fe429c38e7107ae4bfdee8f7a1..9bdcc2b597b53959d267b6724725f83daa258901 100755
--- a/client/run_isolated.py
+++ b/client/run_isolated.py
@@ -281,7 +281,7 @@ def fetch_and_map(isolated_hash, storage, cache, outdir, use_symlinks):
'initial_size': cache.initial_size,
'items_cold': base64.b64encode(large.pack(sorted(cache.added))),
'items_hot': base64.b64encode(
- large.pack(sorted(set(cache.linked) - set(cache.added)))),
+ large.pack(sorted(set(cache.used) - set(cache.added)))),
}
« no previous file with comments | « client/isolateserver.py ('k') | client/tests/isolateserver_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698