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
…35307)

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.
  • Loading branch information
bzbarsky-apple authored Aug 30, 2024
1 parent dd87540 commit 125b8e7
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 125b8e7

Please sign in to comment.