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

Unified Diff: scripts/slave/recipe_modules/auto_bisect_staging/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
Index: scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
diff --git a/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py b/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
index 46cda11ec48eadf2b9759f3808b539f1460b8e71..4c92894ef42ed425ab8875cfba0914e3a8d2b229 100644
--- a/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
+++ b/scripts/slave/recipe_modules/auto_bisect_staging/bisector.py
@@ -538,7 +538,9 @@ 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.debug_values)] for r in self.revisions]
+ with self._api.m.step.nest('Resolving hashes'):
+ rows = [[r.revision_string(), str(r.debug_values)]
+ for r in self.revisions]
return self._pretty_table(header + rows)
def _pretty_table(self, data):

Powered by Google App Engine
This is Rietveld 408576698