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

Unified Diff: recipe_modules/bot_update/resources/bot_update.py

Issue 2382653005: Remove git lockfile flakiness on win (bot_update) (Closed)
Patch Set: Remove git lockfile flakiness on win (bot_update) Created 4 years, 3 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 | tests/bot_update_coverage_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/bot_update/resources/bot_update.py
diff --git a/recipe_modules/bot_update/resources/bot_update.py b/recipe_modules/bot_update/resources/bot_update.py
index ca91dbdf98d15876634feeb65406ba9007608523..0dd780757c4a5ae6731693247e1bdc6f4def9aee 100755
--- a/recipe_modules/bot_update/resources/bot_update.py
+++ b/recipe_modules/bot_update/resources/bot_update.py
@@ -206,10 +206,27 @@ def call(*args, **kwargs): # pragma: no cover
print '===backing off, sleeping for %d secs===' % sleep_time
time.sleep(sleep_time)
+ maybe_remove_win_lockfile(sys.platform, outval)
agable 2016/10/05 16:28:21 If possible, this shouldn't be at the end of call(
katthomas 2016/10/06 21:50:20 Done.
+
raise SubprocessFailed('%s failed with code %d in %s after %d attempts.' %
(' '.join(args), code, cwd, attempt),
code, outval)
+# Windows sometimes has trouble deleting files. This can make git commands
agable 2016/10/05 16:28:20 Use a docstring on line 218 instead of a comment a
katthomas 2016/10/06 21:50:20 Done.
+# fhat rely on locks fail.
+def maybe_remove_win_lockfile(platform, error, retries=3):
+ if platform.startswith('win'):
+ match = re.search("(Unable to create ')(.*)(\.lock)(': File exists)", error)
+ if match:
+ filename = match.group(2) + '.lock'
+ print '===Attempting to remove lockfile %s===' % filename
+ for _ in xrange(retries):
+ exitcode = subprocess.call(['cmd.exe', '/c', 'del',
Paweł Hajdan Jr. 2016/10/03 11:53:22 Please consider breaking the locks only once, at t
agable 2016/10/05 16:28:21 Agreed with this comment -- it makes more sense to
katthomas 2016/10/06 21:50:20 Done. I put the lockbreaking before running any gi
+ '/f', '/q', os.path.normcase(filename)])
+ if exitcode == 0:
+ return
+ time.sleep(3)
+ print '===Failed to remove lockfile %s====' % filename
def git(*args, **kwargs): # pragma: no cover
"""Wrapper around call specifically for Git commands."""
« no previous file with comments | « no previous file | tests/bot_update_coverage_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698