diff options
author | William Schultz <william.schultz@mongodb.com> | 2018-05-01 16:23:24 -0400 |
---|---|---|
committer | William Schultz <william.schultz@mongodb.com> | 2018-05-01 16:27:45 -0400 |
commit | c9a70c9a28a0b2c9ddbd66b5dee2308405a6eb68 (patch) | |
tree | 615aa862d8b37a48e7312ce4c87490055b69404d /buildscripts | |
parent | 0c242bc59fd1db69a891c73dc82a29c69f13a400 (diff) | |
download | mongo-c9a70c9a28a0b2c9ddbd66b5dee2308405a6eb68.tar.gz |
SERVER-34520 Forbid multi-document transactions run through mongoS
Diffstat (limited to 'buildscripts')
3 files changed, 3 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml b/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml index f69170b19be..431429a7a34 100644 --- a/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml +++ b/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml @@ -66,6 +66,7 @@ selector: - jstests/sharding/change_streams_whole_db.js - jstests/sharding/lookup_change_stream_post_image_compound_shard_key.js - jstests/sharding/resume_change_stream.js + - jstests/sharding/transactions_prohibited_in_sharded_cluster.js # Requires count command to be accurate on sharded clusters, introduced in v4.0. - jstests/sharding/accurate_count_with_predicate.js diff --git a/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards_misc.yml b/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards_misc.yml index 2a0741edc54..a586afa3702 100644 --- a/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards_misc.yml +++ b/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards_misc.yml @@ -74,6 +74,7 @@ selector: - jstests/sharding/change_streams_whole_db.js - jstests/sharding/lookup_change_stream_post_image_compound_shard_key.js - jstests/sharding/resume_change_stream.js + - jstests/sharding/transactions_prohibited_in_sharded_cluster.js # Requires count command to be accurate on sharded clusters, introduced in v4.0. - jstests/sharding/accurate_count_with_predicate.js # Disabled throughout sharding. See SERVER-31937 for details. diff --git a/buildscripts/templates/generate_resmoke_suites/sharding_last_stable_mongos_and_mixed_shards.yml.j2 b/buildscripts/templates/generate_resmoke_suites/sharding_last_stable_mongos_and_mixed_shards.yml.j2 index 53ff9071785..a8f2708d427 100644 --- a/buildscripts/templates/generate_resmoke_suites/sharding_last_stable_mongos_and_mixed_shards.yml.j2 +++ b/buildscripts/templates/generate_resmoke_suites/sharding_last_stable_mongos_and_mixed_shards.yml.j2 @@ -82,6 +82,7 @@ selector: - jstests/sharding/change_streams_whole_db.js - jstests/sharding/lookup_change_stream_post_image_compound_shard_key.js - jstests/sharding/resume_change_stream.js + - jstests/sharding/transactions_prohibited_in_sharded_cluster.js # Requires count command to be accurate on sharded clusters, introduced in v4.0. - jstests/sharding/accurate_count_with_predicate.js {% if excluded_tests is defined %} |