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

Unified Diff: infra/bots/recipes/swarmbucket_wrapper.py

Issue 2339443003: Roll recipe DEPS (Closed)
Patch Set: Undo 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
Index: infra/bots/recipes/swarmbucket_wrapper.py
diff --git a/infra/bots/recipes/swarmbucket_wrapper.py b/infra/bots/recipes/swarmbucket_wrapper.py
index 0e4b78b661ac0576ad497717958038766d187b8b..79379c5df95c8afa3f5ab3481306e9e8d0145ec1 100644
--- a/infra/bots/recipes/swarmbucket_wrapper.py
+++ b/infra/bots/recipes/swarmbucket_wrapper.py
@@ -40,7 +40,6 @@ def checkout_steps(api):
# all take the default value.
patch = api.properties.get('patch', True)
clobber = True if api.properties.get('clobber') else False
- force = True if api.properties.get('force') else False
no_shallow = True if api.properties.get('no_shallow') else False
output_manifest = api.properties.get('output_manifest', False)
with_branch_heads = api.properties.get('with_branch_heads', False)
@@ -51,8 +50,7 @@ def checkout_steps(api):
gerrit_no_reset = True if api.properties.get('gerrit_no_reset') else False
# Run bot_update to sync the code and apply a patch if necessary.
- api.bot_update.ensure_checkout(force=force,
- no_shallow=no_shallow,
+ api.bot_update.ensure_checkout(no_shallow=no_shallow,
patch=patch,
with_branch_heads=with_branch_heads,
output_manifest=output_manifest,

Powered by Google App Engine
This is Rietveld 408576698