diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2022-02-07 10:30:17 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-02-08 20:09:39 +0000 |
commit | a4cc9aa3bd0195d879a4fd1f884c6a593056c3dc (patch) | |
tree | 7ff2c40761656e0f67a052200e6f69cb3933fa7f | |
parent | 0f585fc1ef1b30796a0143112f6e013955c18608 (diff) | |
download | mongo-a4cc9aa3bd0195d879a4fd1f884c6a593056c3dc.tar.gz |
SERVER-62711 Increase wait in log_backtrace.js for macOS
-rw-r--r-- | jstests/noPassthrough/log_backtrace.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/log_backtrace.js b/jstests/noPassthrough/log_backtrace.js index e3804242a81..82ce9c73a13 100644 --- a/jstests/noPassthrough/log_backtrace.js +++ b/jstests/noPassthrough/log_backtrace.js @@ -10,7 +10,7 @@ function waitFailedToStart(pid, exitCode) { assert.soon(function() { return !checkProgram(pid).alive; - }, `Failed to wait for ${pid} to die`, 30 * 1000); + }, `Failed to wait for ${pid} to die`, 3 * 60 * 1000); assert.eq(exitCode, checkProgram(pid).exitCode, |