summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/backports_required_for_multiversion_tests.yml4
-rw-r--r--jstests/replsets/apply_ops_dropDatabase.js6
2 files changed, 9 insertions, 1 deletions
diff --git a/etc/backports_required_for_multiversion_tests.yml b/etc/backports_required_for_multiversion_tests.yml
index bbeb9f6b8d7..e180f466b91 100644
--- a/etc/backports_required_for_multiversion_tests.yml
+++ b/etc/backports_required_for_multiversion_tests.yml
@@ -152,6 +152,8 @@ last-continuous:
test_file: jstests/aggregation/lookup_let_optimization.js
- ticket: SERVER-63129
test_file: jstests/replsets/tenant_migration_resume_collection_cloner_after_recipient_failover_with_dropped_views.js
+ - ticket: SERVER-62759
+ test_file: jstests/replsets/apply_ops_dropDatabase.js
# Tests that should only be excluded from particular suites should be listed under that suite.
suites:
@@ -443,6 +445,8 @@ last-lts:
test_file: jstests/aggregation/lookup_let_optimization.js
- ticket: SERVER-63129
test_file: jstests/replsets/tenant_migration_resume_collection_cloner_after_recipient_failover_with_dropped_views.js
+ - ticket: SERVER-62759
+ test_file: jstests/replsets/apply_ops_dropDatabase.js
# Tests that should only be excluded from particular suites should be listed under that suite.
suites:
diff --git a/jstests/replsets/apply_ops_dropDatabase.js b/jstests/replsets/apply_ops_dropDatabase.js
index 987e7be0de2..002bb049c4f 100644
--- a/jstests/replsets/apply_ops_dropDatabase.js
+++ b/jstests/replsets/apply_ops_dropDatabase.js
@@ -3,7 +3,11 @@
* Exercises that the operation can run even if it has to await replication of the intermediate
* collection drops.
*
- * @tags: [requires_replication]
+ * @tags: [
+ * requires_replication,
+ * # dropDatabase can work in conjunction with other operations in 5.0.
+ * requires_fcv_53
+ * ]
*/
(function() {
"use strict";