[preferences] Fix preferences not syncing in safe mode due to component registration order (#13041)

This commit is contained in:
J. Nick Koston
2026-01-07 08:25:08 -10:00
committed by GitHub
parent 39526e5360
commit bf75f77eee
2 changed files with 11 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome.const import CONF_ID
from esphome.core import coroutine_with_priority
from esphome.coroutine import CoroPriority
CODEOWNERS = ["@esphome/core"]
@@ -16,6 +18,7 @@ CONFIG_SCHEMA = cv.Schema(
).extend(cv.COMPONENT_SCHEMA)
@coroutine_with_priority(CoroPriority.PREFERENCES)
async def to_code(config):
var = cg.new_Pvariable(config[CONF_ID])
cg.add(var.set_write_interval(config[CONF_FLASH_WRITE_INTERVAL]))

View File

@@ -114,6 +114,14 @@ class CoroPriority(enum.IntEnum):
# Examples: web_server_ota (52)
WEB_SERVER_OTA = 52
# Preferences - must run before APPLICATION (safe_mode) because safe_mode
# uses an early return when entering safe mode, skipping all lower priority
# component registration. Without IntervalSyncer registered, preferences
# cannot be synced during shutdown in safe mode, causing issues like the
# boot counter never being cleared and devices getting stuck in safe mode.
# Examples: preferences (51)
PREFERENCES = 51
# Application-level services
# Examples: safe_mode (50)
APPLICATION = 50