summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorBernard Gorman <bernard.gorman@gmail.com>2018-11-27 03:50:42 +0000
committerBernard Gorman <bernard.gorman@gmail.com>2019-01-09 07:16:40 +0000
commit560a0c3a3e20924b362fc2b159c30255d62e81d2 (patch)
tree18a082ebad4c1e50f988025e8a53036836175400 /buildscripts
parentec104311f774165b5b77b41b78c89e4f29baaca9 (diff)
downloadmongo-560a0c3a3e20924b362fc2b159c30255d62e81d2.tar.gz
SERVER-38411 Propagate postBatchResumeToken through mongoS to client
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_mongos_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_mongos_sessions_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_secondary_reads.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_sharded_collections_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_whole_cluster_mongos_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_whole_cluster_secondary_reads_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_whole_cluster_sharded_collections_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_whole_db_mongos_passthrough.yml3
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_whole_db_secondary_reads_passthrough.yml4
-rw-r--r--buildscripts/resmokeconfig/suites/change_streams_whole_db_sharded_collections_passthrough.yml3
10 files changed, 0 insertions, 31 deletions
diff --git a/buildscripts/resmokeconfig/suites/change_streams_mongos_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_mongos_passthrough.yml
index 1d6f1247c01..91cab5a482b 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_mongos_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_mongos_passthrough.yml
@@ -7,9 +7,6 @@ selector:
# This test exercises an internal detail of mongos<->mongod communication and is not expected
# to work against a mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_mongos_sessions_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_mongos_sessions_passthrough.yml
index e374bc3f8f8..1ccbe9f6220 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_mongos_sessions_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_mongos_sessions_passthrough.yml
@@ -7,9 +7,6 @@ selector:
# This test exercises an internal detail of mongos<->mongod communication and is not expected to
# work against a mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_secondary_reads.yml b/buildscripts/resmokeconfig/suites/change_streams_secondary_reads.yml
index a9cdbda2645..47e194262a7 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_secondary_reads.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_secondary_reads.yml
@@ -9,9 +9,6 @@ selector:
- jstests/change_streams/only_wake_getmore_for_relevant_changes.js
# This test is not expected to work when run against a mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_sharded_collections_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_sharded_collections_passthrough.yml
index e3356098f4e..97e2b4bc922 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_sharded_collections_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_sharded_collections_passthrough.yml
@@ -6,9 +6,6 @@ selector:
exclude_files:
# Exercises an internal detail of mongos<->mongod communication. Not expected to work on mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_mongos_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_mongos_passthrough.yml
index 9f4ab072f21..cf562eb83b8 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_mongos_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_mongos_passthrough.yml
@@ -7,9 +7,6 @@ selector:
# This test exercises an internal detail of mongos<->mongod communication and is not expected
# to work against a mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_secondary_reads_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_secondary_reads_passthrough.yml
index d18f7452475..1afe717c90b 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_secondary_reads_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_secondary_reads_passthrough.yml
@@ -9,9 +9,6 @@ selector:
- jstests/change_streams/only_wake_getmore_for_relevant_changes.js
# This test is not expected to work when run against a mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_sharded_collections_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_sharded_collections_passthrough.yml
index 1d2c9847dc2..654a7fb085d 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_sharded_collections_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_whole_cluster_sharded_collections_passthrough.yml
@@ -6,9 +6,6 @@ selector:
exclude_files:
# Exercises an internal detail of mongos<->mongod communication. Not expected to work on mongos.
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_whole_db_mongos_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_whole_db_mongos_passthrough.yml
index a113682e798..f0672291ab7 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_whole_db_mongos_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_whole_db_mongos_passthrough.yml
@@ -13,9 +13,6 @@ selector:
- jstests/change_streams/include_cluster_time.js
# Only relevant for single-collection change streams.
- jstests/change_streams/metadata_notifications.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_whole_db_secondary_reads_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_whole_db_secondary_reads_passthrough.yml
index cdc47c63319..b3d033d2e43 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_whole_db_secondary_reads_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_whole_db_secondary_reads_passthrough.yml
@@ -11,10 +11,6 @@ selector:
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
# Only relevant for single-collection change streams.
- jstests/change_streams/metadata_notifications.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
-
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the
diff --git a/buildscripts/resmokeconfig/suites/change_streams_whole_db_sharded_collections_passthrough.yml b/buildscripts/resmokeconfig/suites/change_streams_whole_db_sharded_collections_passthrough.yml
index fbd5fe04b38..215229fc549 100644
--- a/buildscripts/resmokeconfig/suites/change_streams_whole_db_sharded_collections_passthrough.yml
+++ b/buildscripts/resmokeconfig/suites/change_streams_whole_db_sharded_collections_passthrough.yml
@@ -8,9 +8,6 @@ selector:
- jstests/change_streams/report_latest_observed_oplog_timestamp.js
# Only relevant for single-collection change streams.
- jstests/change_streams/metadata_notifications.js
- # TODO SERVER-38411: un-blacklist when mongoS can return postBatchResumeToken.
- - jstests/change_streams/report_post_batch_resume_token.js
- - jstests/change_streams/shell_helper_resume_token.js
exclude_with_any_tags:
##
# The next tags correspond to the special errors thrown by the