summaryrefslogtreecommitdiff
path: root/etc/system_perf.yml
diff options
context:
space:
mode:
authorRyan Timmons <ryan.timmons@10gen.com>2019-03-07 12:18:38 -0500
committerRyan Timmons <ryan.timmons@10gen.com>2019-03-07 12:18:38 -0500
commitf982af060826b063499450b3475a5c72beb1c169 (patch)
treef418dfdcd7af122bc65673d2547512adaee28232 /etc/system_perf.yml
parentca69cd4a88a7fb5073ee1fa6f2b70d3bbecd88f8 (diff)
downloadmongo-f982af060826b063499450b3475a5c72beb1c169.tar.gz
SERVER-40014: System-Perf: Default is_patch expansion to false
Diffstat (limited to 'etc/system_perf.yml')
-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 3d8cd46f808..620e6c19032 100644
--- a/etc/system_perf.yml
+++ b/etc/system_perf.yml
@@ -104,7 +104,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
@@ -229,7 +229,7 @@ functions:
build_id: ${build_id}
build_variant: ${build_variant}
execution: ${execution}
- is_patch: ${is_patch}
+ is_patch: ${is_patch|false}
project: ${project}
project_dir: ${project_dir}
revision: ${revision}