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

Unified Diff: scripts/master/factory/annotator_commands.py

Issue 1468053008: Add LogDog bootstrapping to `annotated_run.py`. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 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 | « environment.cfg.py ('k') | scripts/slave/launcher.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/master/factory/annotator_commands.py
diff --git a/scripts/master/factory/annotator_commands.py b/scripts/master/factory/annotator_commands.py
index 30652d517d38adadc05d90e8639d13c9df5291aa..52ef61e84f087b16e58eabdacf7a26bbe66fc00d 100644
--- a/scripts/master/factory/annotator_commands.py
+++ b/scripts/master/factory/annotator_commands.py
@@ -26,8 +26,9 @@ class AnnotatorCommands(commands.FactoryCommands):
if call_count != 0:
raise Exception("AnnotatorCommands.AddAnnotatedScript called twice.")
self._call_counts['AddAnnotatedScript'] += 1
- runner = self.PathJoin(self._script_dir, 'annotated_run.py')
iannucci 2015/11/26 00:37:34 ugh. Please no. This means we need to restart all
- cmd = [self._python, '-u', runner, '--use-factory-properties-from-disk']
+ runner = self.PathJoin(self._script_dir, 'launcher.py')
+ cmd = [self._python, '-u', runner, '--',
+ '--use-factory-properties-from-disk']
cmd = self.AddB64GzBuildProperties(cmd)
self._factory.addStep(chromium_step.AnnotatedCommand,
name='steps',
« no previous file with comments | « environment.cfg.py ('k') | scripts/slave/launcher.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698