[release] Wait longer when tagging releases.

This is just a band-aid workaround.

TBR=hablich@chromium.org
NOTRY=true

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

Cr-Commit-Position: refs/heads/master@{#34349}
This commit is contained in:
machenbach 2016-02-28 04:30:42 -08:00 committed by Commit bot
parent 6fcf83a1a3
commit 9c6f024d38

View File

@ -382,7 +382,7 @@ class GitInterface(VCInterface):
# is the case for all automated merge and push commits - also no title is
# the prefix of another title).
commit = None
for wait_interval in [5, 10, 20, 40, 60, 60]:
for wait_interval in [10, 30, 60, 60, 60, 60, 60]:
self.step.Git("fetch")
commit = self.step.GitLog(n=1, format="%H", grep=message, branch=remote)
if commit: