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

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

Issue 1758603004: Checking for failure in requested builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Updating expectations after rebase and sync. Yet again. Created 4 years, 9 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/bisector.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/bisector.py b/scripts/slave/recipe_modules/auto_bisect/bisector.py
index 63fa7686a0f26039ad681730828d479e184b6f4e..b2002b08ce0931a0639d6a13743388ed0a833c87 100644
--- a/scripts/slave/recipe_modules/auto_bisect/bisector.py
+++ b/scripts/slave/recipe_modules/auto_bisect/bisector.py
@@ -650,7 +650,7 @@ class Bisector(object):
self.wait_for(r)
def wait_for(self, revision):
- """Waits for any of the revisions in the list to finish its job(s)."""
+ """Waits for the revision to finish its job."""
with self.api.m.step.nest('Waiting for ' + revision.revision_string()):
while True:
revision.update_status()
@@ -660,7 +660,7 @@ class Bisector(object):
"""
import sys
import time
- time.sleep(300)
+ time.sleep(20*60)
sys.exit(0)
""")
else:
« no previous file with comments | « scripts/slave/recipe_modules/auto_bisect/__init__.py ('k') | scripts/slave/recipe_modules/auto_bisect/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698