diff options
author | Daniel Gottlieb <daniel.gottlieb@mongodb.com> | 2021-05-17 22:26:46 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-05-18 02:58:27 +0000 |
commit | 162e0d14fe2944b8e782263539944d41f1f3d0c9 (patch) | |
tree | 9e4cda8ad9d8add760fb38fa9be06ed363b20ba8 /buildscripts/resmokeconfig | |
parent | b0e213e963fe9ca76fb07212c6c2a1c9316af060 (diff) | |
download | mongo-162e0d14fe2944b8e782263539944d41f1f3d0c9.tar.gz |
SERVER-56953: Allow testing for new-style retryable findAndModify for basic operations.
Diffstat (limited to 'buildscripts/resmokeconfig')
6 files changed, 18 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/tenant_migration_causally_consistent_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/tenant_migration_causally_consistent_jscore_passthrough.yml index 09b03fe85d1..edc3c0b8214 100644 --- a/buildscripts/resmokeconfig/suites/tenant_migration_causally_consistent_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/tenant_migration_causally_consistent_jscore_passthrough.yml @@ -252,6 +252,9 @@ executor: # so. Therefore, the garbage collection delay doesn't need to be large. tenantMigrationGarbageCollectionDelayMS: 1 ttlMonitorSleepSecs: 1 + # Tenant migrations is not currently compatible with implicitly replicated retryable + # findAndModify images. + storeFindAndModifyImagesInSideCollection: false tlsMode: allowTLS tlsCAFile: jstests/libs/ca.pem tlsAllowInvalidHostnames: '' diff --git a/buildscripts/resmokeconfig/suites/tenant_migration_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/tenant_migration_jscore_passthrough.yml index c3bc832f592..af299b7abf0 100644 --- a/buildscripts/resmokeconfig/suites/tenant_migration_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/tenant_migration_jscore_passthrough.yml @@ -175,6 +175,9 @@ executor: # so. Therefore, the garbage collection delay doesn't need to be large. tenantMigrationGarbageCollectionDelayMS: 1 ttlMonitorSleepSecs: 1 + # Tenant migrations is not currently compatible with implicitly replicated retryable + # findAndModify images. + storeFindAndModifyImagesInSideCollection: false tlsMode: allowTLS tlsCAFile: jstests/libs/ca.pem tlsAllowInvalidHostnames: '' diff --git a/buildscripts/resmokeconfig/suites/tenant_migration_kill_primary_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/tenant_migration_kill_primary_jscore_passthrough.yml index e19b2719760..c0e183bfb32 100644 --- a/buildscripts/resmokeconfig/suites/tenant_migration_kill_primary_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/tenant_migration_kill_primary_jscore_passthrough.yml @@ -301,6 +301,9 @@ executor: # so. Therefore, the garbage collection delay doesn't need to be large. tenantMigrationGarbageCollectionDelayMS: 1 ttlMonitorSleepSecs: 1 + # Tenant migrations is not currently compatible with implicitly replicated retryable + # findAndModify images. + storeFindAndModifyImagesInSideCollection: false tlsMode: allowTLS tlsCAFile: jstests/libs/ca.pem tlsAllowInvalidHostnames: '' diff --git a/buildscripts/resmokeconfig/suites/tenant_migration_multi_stmt_txn_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/tenant_migration_multi_stmt_txn_jscore_passthrough.yml index 8b480876583..20acf6d1414 100644 --- a/buildscripts/resmokeconfig/suites/tenant_migration_multi_stmt_txn_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/tenant_migration_multi_stmt_txn_jscore_passthrough.yml @@ -430,6 +430,9 @@ executor: tlsAllowInvalidHostnames: '' auth: '' keyFile: *keyFile + # Tenant migrations is not currently compatible with implicitly replicated retryable + # findAndModify images. + storeFindAndModifyImagesInSideCollection: false per_mongod_options: # Each entry is for a different replica set's extra mongod options. - tlsCertificateKeyFile: jstests/libs/rs0.pem diff --git a/buildscripts/resmokeconfig/suites/tenant_migration_stepdown_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/tenant_migration_stepdown_jscore_passthrough.yml index 18d7ef78952..6d7d6381375 100644 --- a/buildscripts/resmokeconfig/suites/tenant_migration_stepdown_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/tenant_migration_stepdown_jscore_passthrough.yml @@ -296,6 +296,9 @@ executor: # so. Therefore, the garbage collection delay doesn't need to be large. tenantMigrationGarbageCollectionDelayMS: 1 ttlMonitorSleepSecs: 1 + # Tenant migrations is not currently compatible with implicitly replicated retryable + # findAndModify images. + storeFindAndModifyImagesInSideCollection: false tlsMode: allowTLS tlsCAFile: jstests/libs/ca.pem tlsAllowInvalidHostnames: '' diff --git a/buildscripts/resmokeconfig/suites/tenant_migration_terminate_primary_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/tenant_migration_terminate_primary_jscore_passthrough.yml index e5186524cad..65e347bb480 100644 --- a/buildscripts/resmokeconfig/suites/tenant_migration_terminate_primary_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/tenant_migration_terminate_primary_jscore_passthrough.yml @@ -302,6 +302,9 @@ executor: tlsAllowInvalidHostnames: '' auth: '' keyFile: *keyFile + # Tenant migrations is not currently compatible with implicitly replicated retryable + # findAndModify images. + storeFindAndModifyImagesInSideCollection: false per_mongod_options: # Each entry is for a different replica set's extra mongod options. - tlsCertificateKeyFile: jstests/libs/rs0.pem |