summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMoustafa Maher <m.maher@10gen.com>2021-03-24 17:31:56 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-03-25 04:52:57 +0000
commitc4530deb51e0f97cc48c2547f915bb4b39e49253 (patch)
treeccc8fc22015c41b6d494cbea2ed958712151bde0 /buildscripts
parenta49827ee30cf37844f177b587071b6b51db87c90 (diff)
downloadmongo-c4530deb51e0f97cc48c2547f915bb4b39e49253.tar.gz
SERVER-54927 move away from using Bson_serialization_type any
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/idl/idl_check_compatibility.py5
-rw-r--r--buildscripts/idl/idl_compatibility_errors.py5
2 files changed, 5 insertions, 5 deletions
diff --git a/buildscripts/idl/idl_check_compatibility.py b/buildscripts/idl/idl_check_compatibility.py
index c04d5218a85..eb807eb0dd9 100644
--- a/buildscripts/idl/idl_check_compatibility.py
+++ b/buildscripts/idl/idl_check_compatibility.py
@@ -124,10 +124,7 @@ ALLOW_ANY_TYPE_LIST: List[str] = [
'findAndModify-reply-upserted',
'explain-param-collation',
'explain-param-use44SortKeys',
- 'explain-param-useNewUpsert',
-
- # TODO (SERVER-54927): Decide what to do with commands: (hello).
- 'hello-param-saslSupportedMechs'
+ 'explain-param-useNewUpsert'
]
SKIPPED_FILES = ["unittest.idl"]
diff --git a/buildscripts/idl/idl_compatibility_errors.py b/buildscripts/idl/idl_compatibility_errors.py
index 70639fbd14b..d1f220c9d7d 100644
--- a/buildscripts/idl/idl_compatibility_errors.py
+++ b/buildscripts/idl/idl_compatibility_errors.py
@@ -124,7 +124,10 @@ SKIPPED_COMMANDS = {
"ping": [ERROR_ID_ADDED_ACCESS_CHECK_FIELD],
"commitTransaction": [ERROR_ID_ADDED_ACCESS_CHECK_FIELD],
"abortTransaction": [ERROR_ID_ADDED_ACCESS_CHECK_FIELD],
- "hello": [ERROR_ID_ADDED_ACCESS_CHECK_FIELD],
+ "hello": [
+ ERROR_ID_ADDED_ACCESS_CHECK_FIELD,
+ ERROR_ID_OLD_COMMAND_PARAMETER_TYPE_BSON_SERIALIZATION_TYPE_ANY
+ ],
}