summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Chan <jason.chan@mongodb.com>2021-11-04 14:27:12 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-11-04 15:55:55 +0000
commite964c8ee8013a5341159da81837635d54cd3f3e9 (patch)
treeb6245e89d892335ecf48f4aef19ac5435e8b1515
parentee60e4ecf5e0bc8bfc9166bcf407eeeaa493a15f (diff)
downloadmongo-e964c8ee8013a5341159da81837635d54cd3f3e9.tar.gz
SERVER-61227 add whitespace when appending resmoke args in task generation
-rw-r--r--buildscripts/task_generation/task_types/resmoke_tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/task_generation/task_types/resmoke_tasks.py b/buildscripts/task_generation/task_types/resmoke_tasks.py
index 43a62e346cd..513d6da8c13 100644
--- a/buildscripts/task_generation/task_types/resmoke_tasks.py
+++ b/buildscripts/task_generation/task_types/resmoke_tasks.py
@@ -170,7 +170,7 @@ class ResmokeGenTaskService:
resmoke_args = f"--originSuite={original_suite}"
if params.resmoke_args is not None:
- resmoke_args += params.resmoke_args
+ resmoke_args += f" {params.resmoke_args} "
if params.repeat_suites and not string_contains_any_of_args(resmoke_args,
["repeatSuites", "repeat"]):