summaryrefslogtreecommitdiff
path: root/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js')
-rw-r--r--jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js b/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
index c7cd0d7ca89..f0af23b6787 100644
--- a/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
+++ b/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
@@ -15,15 +15,6 @@
* *when the range has been deleted on the donor.*
* - behavior: Must be one of "unshardedOnly", "targetsPrimaryUsesConnectionVersioning" or
* "versioned". Determines what system profiler checks are performed.
- *
- * Tagged as 'requires_fcv_44', since this test cannot run against versions less then 4.4. This is
- * because 'planCacheListPlans' and 'planCacheListQueryShapes' were deleted in 4.4, and thus not
- * tested here. But this test asserts that all commands are covered, so will fail against a version
- * of the server which implements these commands.
- *
- * @tags: [
- * requires_fcv_44,
- * ]
*/
(function() {
"use strict";
@@ -322,8 +313,8 @@ let testCases = {
whatsmyuri: {skip: "does not return user data"}
};
-commandsRemovedFromMongosIn44.forEach(function(cmd) {
- testCases[cmd] = {skip: "must define test coverage for 4.2 backwards compatibility"};
+commandsRemovedFromMongosIn46.forEach(function(cmd) {
+ testCases[cmd] = {skip: "must define test coverage for 4.4 backwards compatibility"};
});
// Set the secondaries to priority 0 and votes 0 to prevent the primaries from stepping down.