Skip to content

Commit

Permalink
Disable the new data model interface code across the board for now.
Browse files Browse the repository at this point in the history
On Linux we were using the "check" mode, but it's buggy in ways that cause app
crashes (see project-chip#35306).
Just disabling it for now so this is not an issue for SVE.
  • Loading branch information
bzbarsky-apple committed Aug 30, 2024
1 parent a68b7fc commit 29911d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/common_flags.gni
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ declare_args() {
# - check: runs BOTH datamodel and non-data-model (if possible) functionality and compares results
# - enabled: runs only the data model interface (does not use the legacy code)
if (current_os == "linux") {
chip_use_data_model_interface = "check"
# "check" is broken, see https://github.com/project-chip/connectedhomeip/issues/35306
#chip_use_data_model_interface = "check"
chip_use_data_model_interface = "disabled"
} else {
chip_use_data_model_interface = "disabled"
}
Expand Down

0 comments on commit 29911d5

Please sign in to comment.