aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/vars/api.py
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-09-15 08:27:33 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-15 08:27:33 -0700
commit0973a371ecb55a97d84d18c236df6180bca41e6d (patch)
treedb1b698c1234f5b675fc002fee4a5895fa773934 /infra/bots/recipe_modules/vars/api.py
parente839e78443e48d4ccad89059b4bc4b3d894fcfdd (diff)
Pass rietveld as the default patch_storage.
Passing around empty strings as command line arguments requires us to be really careful about command line quoting, parsing, etc. It seems easy enough here to just supply the implied value. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2323233003 Review-Url: https://codereview.chromium.org/2323233003
Diffstat (limited to 'infra/bots/recipe_modules/vars/api.py')
-rw-r--r--infra/bots/recipe_modules/vars/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py
index 54da3b3559..b2b51b30ac 100644
--- a/infra/bots/recipe_modules/vars/api.py
+++ b/infra/bots/recipe_modules/vars/api.py
@@ -108,7 +108,7 @@ class SkiaVarsApi(recipe_api.RecipeApi):
self.default_env.update({'SKIA_OUT': self.skia_out,
'BUILDTYPE': self.configuration})
self.is_trybot = self.builder_cfg['is_trybot']
- self.patch_storage = self.m.properties.get('patch_storage', '')
+ self.patch_storage = self.m.properties.get('patch_storage', 'rietveld')
self.issue = None
self.patchset = None
if self.is_trybot: