diff options
author | vrachev <vlad.rachev@mongodb.com> | 2018-09-14 10:59:25 -0400 |
---|---|---|
committer | vrachev <vlad.rachev@mongodb.com> | 2018-09-21 13:16:40 -0400 |
commit | 915ae438a531466d1e952f4c0cd77dc98d1e90ce (patch) | |
tree | 690bbdb9dea351409410f5c8899e0e777feb5079 /jstests | |
parent | 135950154d1d319217cd544ea3e3f067213f9645 (diff) | |
download | mongo-915ae438a531466d1e952f4c0cd77dc98d1e90ce.tar.gz |
SERVER-37071 Blacklist set7.js and max_doc_size.js from retryable_writes_jscore_stepdown_passthrough
(cherry picked from commit 7087350d1d5c943520e9972ac1f8b85252c0eceb)
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/core/max_doc_size.js | 3 | ||||
-rw-r--r-- | jstests/core/set7.js | 12 |
2 files changed, 11 insertions, 4 deletions
diff --git a/jstests/core/max_doc_size.js b/jstests/core/max_doc_size.js index 01ed3e8a99f..3ac7149f485 100644 --- a/jstests/core/max_doc_size.js +++ b/jstests/core/max_doc_size.js @@ -1,3 +1,6 @@ +// The {$set: {x: maxStr}}} update takes multiple seconds to execute. +// @tags: [operations_longer_than_stepdown_interval] + /** * Confirms that: * - Documents at the maximum BSON size limit can be written and read back. diff --git a/jstests/core/set7.js b/jstests/core/set7.js index 3869ee70e50..64784a7216c 100644 --- a/jstests/core/set7.js +++ b/jstests/core/set7.js @@ -1,7 +1,11 @@ -// Cannot implicitly shard accessed collections because of following errmsg: A single -// update/delete on a sharded collection must contain an exact match on _id or contain the shard -// key. -// @tags: [assumes_unsharded_collection] +// @tags: [ +// # Cannot implicitly shard accessed collections because of following errmsg: A single +// # update/delete on a sharded collection must contain an exact match on _id or contain +// # the shard key. +// assumes_unsharded_collection, +// # The {$set: {"a.1500000": 1}} update takes multiple seconds to execute. +// operations_longer_than_stepdown_interval, +// ] // test $set with array indicies |