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

Unified Diff: client/isolate.py

Issue 1932143003: run_isolated: support non-isolated commands (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@run-isolated-download-stats
Patch Set: 80cols 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 | « no previous file | client/isolateserver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/isolate.py
diff --git a/client/isolate.py b/client/isolate.py
index 303d89044558f72f0328f16cca2196e307e2b91f..a24d14dfe05006edfa5fbb0404f0551815f99b92 100755
--- a/client/isolate.py
+++ b/client/isolate.py
@@ -855,7 +855,7 @@ def CMDarchive(parser, args):
parser.error('Unsupported argument: %s' % args)
process_isolate_options(parser, options)
auth.process_auth_options(parser, options)
- isolateserver.process_isolate_server_options(parser, options, True)
+ isolateserver.process_isolate_server_options(parser, options, True, True)
result = isolate_and_archive(
[(options, unicode(os.getcwd()))],
options.isolate_server,
@@ -894,7 +894,7 @@ def CMDbatcharchive(parser, args):
help='Write isolated hashes of archived trees to this file as JSON')
options, args = parser.parse_args(args)
auth.process_auth_options(parser, options)
- isolateserver.process_isolate_server_options(parser, options, True)
+ isolateserver.process_isolate_server_options(parser, options, True, True)
# Validate all incoming options, prepare what needs to be archived as a list
# of tuples (archival options, working directory).
« no previous file with comments | « no previous file | client/isolateserver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698