Skip to content

Commit 29911d5

Browse files
Disable the new data model interface code across the board for now.
On Linux we were using the "check" mode, but it's buggy in ways that cause app crashes (see #35306). Just disabling it for now so this is not an issue for SVE.
1 parent a68b7fc commit 29911d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/common_flags.gni

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ declare_args() {
2727
# - check: runs BOTH datamodel and non-data-model (if possible) functionality and compares results
2828
# - enabled: runs only the data model interface (does not use the legacy code)
2929
if (current_os == "linux") {
30-
chip_use_data_model_interface = "check"
30+
# "check" is broken, see https://github.com/project-chip/connectedhomeip/issues/35306
31+
#chip_use_data_model_interface = "check"
32+
chip_use_data_model_interface = "disabled"
3133
} else {
3234
chip_use_data_model_interface = "disabled"
3335
}

0 commit comments

Comments
 (0)