diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2021-08-03 22:59:10 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-08-03 23:33:04 +0000 |
commit | 4efd59b012ae433cd49444075bffa3dc7bb0e88b (patch) | |
tree | 336a3510957f6a93d3de5e18282bb890d3466307 /jstests | |
parent | c34976fc8f460bdc53440820a5b4d5de035de968 (diff) | |
download | mongo-4efd59b012ae433cd49444075bffa3dc7bb0e88b.tar.gz |
SERVER-59057 Skip enforcing fast count for some config collections.
Neither config.transactions nor config.image_collection are guaranteed
to have an accurate fast count when coming out of replication rollback.
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/replsets/rollback_transaction_table.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/jstests/replsets/rollback_transaction_table.js b/jstests/replsets/rollback_transaction_table.js index e0ac44bca41..9dfa29ad4f8 100644 --- a/jstests/replsets/rollback_transaction_table.js +++ b/jstests/replsets/rollback_transaction_table.js @@ -23,9 +23,6 @@ // also manually simulates a session, which is not compatible with implicit sessions. TestData.disableImplicitSessions = true; -// TODO (SERVER-24266): Once fast counts are tolerant to rollbacks, remove this guard. -TestData.skipEnforceFastCountOnValidate = true; - load("jstests/libs/retryable_writes_util.js"); if (!RetryableWritesUtil.storageEngineSupportsRetryableWrites(jsTest.options().storageEngine)) { |