Skip to content

Commit

Permalink
Enable Subscription Persistence and Resumption for ESP32
Browse files Browse the repository at this point in the history
  • Loading branch information
jtung-apple committed Jan 31, 2023
1 parent 3477068 commit 0e7cb5e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/platform/device.gni
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ declare_args() {
}

# Enable Subscription persistence / resumption for CI and supported platforms
if (chip_device_platform == "darwin" || chip_device_platform == "linux" ||
if (chip_device_platform == "darwin" ||
chip_device_platform == "linux" ||
chip_device_platform == "esp32" ||
chip_device_platform == "fake") {
chip_persist_subscriptions = true
} else {
Expand Down

0 comments on commit 0e7cb5e

Please sign in to comment.