Add more output when roll scripts are retrying.

TBR=jarin@chromium.org

Review URL: https://codereview.chromium.org/529343003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23664 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 7572e779
...@@ -318,13 +318,14 @@ class Step(GitRecipesMixin): ...@@ -318,13 +318,14 @@ class Step(GitRecipesMixin):
got_exception = False got_exception = False
try: try:
result = cb() result = cb()
except NoRetryException, e: except NoRetryException as e:
raise e raise e
except Exception: except Exception as e:
got_exception = True got_exception = e
if got_exception or retry_on(result): if got_exception or retry_on(result):
if not wait_plan: # pragma: no cover if not wait_plan: # pragma: no cover
raise Exception("Retried too often. Giving up.") raise Exception("Retried too often. Giving up. Reason: %s" %
str(got_exception))
wait_time = wait_plan.pop() wait_time = wait_plan.pop()
print "Waiting for %f seconds." % wait_time print "Waiting for %f seconds." % wait_time
self._side_effect_handler.Sleep(wait_time) self._side_effect_handler.Sleep(wait_time)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment