summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorMaryana Piatrova <maryana_piatrova@epbyminw2625.minsk.epam.com>2020-02-21 14:23:15 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-26 19:24:38 +0000
commit4903af6f8e927b64762e5903e026b60c111385e0 (patch)
tree4dda855c690c7722ddc53b7056632796cab3fc99 /etc
parent62a6b963bc20ba74d2f3e0d62552dc3b7b1f1133 (diff)
downloadmongo-4903af6f8e927b64762e5903e026b60c111385e0.tar.gz
SERVER-40014: System-Perf: Default is_patch expansion to false
Diffstat (limited to 'etc')
-rw-r--r--etc/system_perf.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/system_perf.yml b/etc/system_perf.yml
index c8e8882106a..f7b30a71e58 100644
--- a/etc/system_perf.yml
+++ b/etc/system_perf.yml
@@ -90,7 +90,7 @@ functions:
fi
# If this is a patch build, we add the patch version id to the version string so we know
# this build was a patch, and which evergreen task it came from
- if [ "${is_patch|}" = "true" ]; then
+ if [ "${is_patch|false}" = "true" ]; then
MONGO_VERSION="$MONGO_VERSION-patch-${version_id}"
fi
@@ -319,7 +319,7 @@ functions:
params:
working_dir: work
script: |
- is_patch=${is_patch}
+ is_patch=${is_patch|false}
task_id=${task_id}
perf_jira_user=${perf_jira_user}
perf_jira_pw=${perf_jira_pw}