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

Unified Diff: rietveld.py

Issue 323363002: Changed backoff to be exponential. This will help to reduce apply_issue flakiness. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rietveld.py
diff --git a/rietveld.py b/rietveld.py
index d78c0171d468f789ca5be44b3aea1434cd4dbed8..fbad701ad0ac029b9a632796ebc3618c85713d8d 100644
--- a/rietveld.py
+++ b/rietveld.py
@@ -434,8 +434,8 @@ class Rietveld(object):
raise
if not 'timed out' in str(e):
raise
- # If reaching this line, loop again. Uses a small backoff.
- time.sleep(1+maxtries*2)
+ # If reaching this line, loop again. Uses an exponential backoff.
+ time.sleep(1+5**retry)
M-A Ruel 2014/06/11 13:27:41 5**3 = 125. That's a hell of a long time. I don't
Sergiy Byelozyorov 2014/06/11 15:46:42 I guess what I didn't consider is interactive usag
M-A Ruel 2014/06/11 17:52:48 Oh, I'm concerned about try jobs what would get st
Sergiy Byelozyorov 2014/06/12 09:43:50 Why is this an issue? We only wait extra few minut
M-A Ruel 2014/06/12 12:18:07 Yes but I don't know if you specifically looked at
finally:
upload.ErrorExit = old_error_exit
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698