diff options
author | Jason Carey <jcarey@argv.me> | 2019-02-12 10:39:43 -0500 |
---|---|---|
committer | Jason Carey <jcarey@argv.me> | 2019-02-12 15:50:57 -0500 |
commit | efbc5f12fda0d76cf3f9ec6049232ab486e29977 (patch) | |
tree | 608d4fc3576b30626af7b4b61a63389b3beb47b4 | |
parent | d34aa0fd73e9fc5aef3024059fce1e22067b9e54 (diff) | |
download | mongo-efbc5f12fda0d76cf3f9ec6049232ab486e29977.tar.gz |
SERVER-39528 inc timeouts for socket_disconnect_kills
The current timeouts are a bit too low for some variants. Let's
increase them to fix some flakiness.
-rw-r--r-- | jstests/noPassthrough/socket_disconnect_kills.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/socket_disconnect_kills.js b/jstests/noPassthrough/socket_disconnect_kills.js index a1ba2e26e60..5c9e3585d02 100644 --- a/jstests/noPassthrough/socket_disconnect_kills.js +++ b/jstests/noPassthrough/socket_disconnect_kills.js @@ -23,8 +23,8 @@ // Returns false if the op was gone from current op function check(client, pre, post) { const interval = 200; - const timeout = 2000; - const socketTimeout = 1000; + const timeout = 10000; + const socketTimeout = 5000; const host = client.host; |