summaryrefslogtreecommitdiff
path: root/jstests/libs
diff options
context:
space:
mode:
authorDivjot Arora <divjot.arora@10gen.com>2019-02-13 16:26:11 -0500
committerDivjot Arora <divjot.arora@10gen.com>2019-02-19 12:18:01 -0500
commitffb9c28086045859fc5aa8a65f37526f04265130 (patch)
tree6327a13ae3cadf064c001c327c1b62738ef22870 /jstests/libs
parent65507ffa56e4f37b17e4c6bc606f3e0b31d0d3fc (diff)
downloadmongo-ffb9c28086045859fc5aa8a65f37526f04265130.tar.gz
Raise timeout and lower interval in implicitly_retry_on_background_op_in_progress.
SERVER-39120 SERVER-39341
Diffstat (limited to 'jstests/libs')
-rw-r--r--jstests/libs/override_methods/implicitly_retry_on_background_op_in_progress.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/libs/override_methods/implicitly_retry_on_background_op_in_progress.js b/jstests/libs/override_methods/implicitly_retry_on_background_op_in_progress.js
index 0120af02e4c..5b91a4bab5d 100644
--- a/jstests/libs/override_methods/implicitly_retry_on_background_op_in_progress.js
+++ b/jstests/libs/override_methods/implicitly_retry_on_background_op_in_progress.js
@@ -28,8 +28,8 @@
"renameCollection": [ErrorCodes.NamespaceNotFound],
};
- const kTimeout = 5 * 60 * 1000;
- const kInterval = 1000;
+ const kTimeout = 10 * 60 * 1000;
+ const kInterval = 200;
// Make it easier to understand whether or not returns from the assert.soon are being retried.
const kNoRetry = true;