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

Unified Diff: appengine/swarming/swarming_bot/__main__.py

Issue 2443663002: Pass args in file from task_runner to run_isolated (Closed)
Patch Set: Respond to code review comments other than changes to options processing Created 4 years, 2 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
Index: appengine/swarming/swarming_bot/__main__.py
diff --git a/appengine/swarming/swarming_bot/__main__.py b/appengine/swarming/swarming_bot/__main__.py
index 3570e0faa8cb92eca56d2f65707314bf1abb4a81..6bb5bb27f1e14179e5e5e7a839852b1c9293ff04 100644
--- a/appengine/swarming/swarming_bot/__main__.py
+++ b/appengine/swarming/swarming_bot/__main__.py
@@ -90,7 +90,7 @@ def CMDrun_isolated(args):
sys.path.insert(0, os.path.join(THIS_FILE, 'client'))
# run_isolated setups logging by itself.
import run_isolated
- return run_isolated.main(args)
+ return run_isolated.main(run_isolated.get_args(args))
def CMDsetup(_args):

Powered by Google App Engine
This is Rietveld 408576698