summaryrefslogtreecommitdiff
path: root/buildscripts/resmoke.py
diff options
context:
space:
mode:
authorKim Tao <kimberly.tao@mongodb.com>2019-01-28 17:50:03 -0500
committerKim Tao <kim.tao@mongodb.com>2019-03-15 16:29:56 -0400
commit9acc250dc9b6ce92f1cee13b404a408e17804564 (patch)
treee9871d33637e83469964ebaef4dbf981b535f21f /buildscripts/resmoke.py
parentb6958f06004e45baf0fb4b2593dd6bd2e4765279 (diff)
downloadmongo-9acc250dc9b6ce92f1cee13b404a408e17804564.tar.gz
SERVER-39094,SERVER-38136: update Jasper process to reflect RPC changes; fix Windows failures due to sigterm.
Diffstat (limited to 'buildscripts/resmoke.py')
-rwxr-xr-xbuildscripts/resmoke.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/resmoke.py b/buildscripts/resmoke.py
index 2094610d65d..9ad57d86ff1 100755
--- a/buildscripts/resmoke.py
+++ b/buildscripts/resmoke.py
@@ -318,7 +318,9 @@ class Resmoke(object): # pylint: disable=too-many-instance-attributes
jasper_process.Process.jasper_pb2_grpc = jasper_pb2_grpc
curator_path = "build/curator"
- git_hash = "1b8c7344aa1daed0846e32204dffb21cfdda208c"
+ if sys.platform == "win32":
+ curator_path += ".exe"
+ git_hash = "d846f0c875716e9377044ab2a50542724369662a"
curator_exists = os.path.isfile(curator_path)
curator_same_version = False
if curator_exists: