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

Unified Diff: client/isolated_format.py

Issue 2484133002: luci-py/isolateserver.py: Add support for tar archives when downloading. (Closed) Base URL: https://github.com/luci/luci-py.git@master
Patch Set: Rebase onto master. Created 4 years, 1 month 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/isolate/doc/Design.md ('k') | client/isolateserver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/isolated_format.py
diff --git a/client/isolated_format.py b/client/isolated_format.py
index c828f74ada436ea1ef0e70c49b8c3f53bd45f213..5c933095b20a09fd944e66904554729ddc34e741 100644
--- a/client/isolated_format.py
+++ b/client/isolated_format.py
@@ -18,7 +18,7 @@ from utils import tools
# Version stored and expected in .isolated files.
-ISOLATED_FILE_VERSION = '1.5'
+ISOLATED_FILE_VERSION = '1.6'
# Chunk size to use when doing disk I/O.
@@ -37,7 +37,7 @@ SUPPORTED_ALGOS = {
# Used for serialization.
SUPPORTED_ALGOS_REVERSE = dict((v, k) for k, v in SUPPORTED_ALGOS.iteritems())
-SUPPORTED_FILE_TYPES = ['basic', 'ar']
+SUPPORTED_FILE_TYPES = ['basic', 'ar', 'tar']
class IsolatedError(ValueError):
« no previous file with comments | « appengine/isolate/doc/Design.md ('k') | client/isolateserver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698