Index: tools/push-to-trunk/auto_roll.py |
diff --git a/tools/push-to-trunk/auto_roll.py b/tools/push-to-trunk/auto_roll.py |
index cb990cdb173723fb1e660ae327f7a6f57514a05b..ce1a58beca4a94f1cdcbae422265985d17d783c0 100755 |
--- a/tools/push-to-trunk/auto_roll.py |
+++ b/tools/push-to-trunk/auto_roll.py |
@@ -62,7 +62,8 @@ class FetchLKGR(Step): |
def RunStep(self): |
lkgr_url = "https://v8-status.appspot.com/lkgr" |
- self.Persist("lkgr", self.ReadURL(lkgr_url)) |
+ # Retry several times since app engine might have issues. |
+ self.Persist("lkgr", self.ReadURL(lkgr_url, wait_plan=[5, 20, 20, 20])) |
class PushToTrunk(Step): |