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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/bisector.py

Issue 2447023003: Nest multiple 'resolving hash xxx' steps under a single super step. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect_staging/bisector.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/auto_bisect/bisector.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/bisector.py b/scripts/slave/recipe_modules/auto_bisect/bisector.py
index cd46eb187fbc2b818e67509b6c6a9350f9519313..b0be9bed23029c75e4711a18231b7b63a3ffd856 100644
--- a/scripts/slave/recipe_modules/auto_bisect/bisector.py
+++ b/scripts/slave/recipe_modules/auto_bisect/bisector.py
@@ -648,7 +648,8 @@ class Bisector(object):
def _revision_value_table(self):
"""Returns a string table showing revisions and their values."""
header = [['Revision', 'Values']]
- rows = [[r.revision_string(), str(r.values)] for r in self.revisions]
+ with self._api.m.step.nest('Resolving hashes'):
+ rows = [[r.revision_string(), str(r.values)] for r in self.revisions]
return self._pretty_table(header + rows)
def _pretty_table(self, data):
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect_staging/bisector.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698