diff options
author | Rui Liu <rui.liu@mongodb.com> | 2021-11-23 21:15:12 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-11-23 21:42:00 +0000 |
commit | 0b5f8fbf748fa7c8da75bd64ac9ca4ed322de321 (patch) | |
tree | 6c0839554e2ab57915a8797445412a61a427dd1c /buildscripts | |
parent | be868e5a64d1eae8f27be94b9007a32ac0cfa8fd (diff) | |
download | mongo-0b5f8fbf748fa7c8da75bd64ac9ca4ed322de321.tar.gz |
SERVER-60694 Move collMod to DDL coordinator infrastructure
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/idl/idl_check_compatibility.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildscripts/idl/idl_check_compatibility.py b/buildscripts/idl/idl_check_compatibility.py index b703d9fd0e8..4e8303758cd 100644 --- a/buildscripts/idl/idl_check_compatibility.py +++ b/buildscripts/idl/idl_check_compatibility.py @@ -152,6 +152,9 @@ ALLOW_ANY_TYPE_LIST: List[str] = [ ] SKIPPED_FILES = ["unittest.idl"] +# TODO (SERVER-61551): CollModRequest has been extracted out as a chained struct of collMod command. +# Whitelist collMod until chained struct comparison works for IDL compatibility check. +SKIPPED_FILES += ["coll_mod.idl"] @dataclass |