mirror of
https://github.com/esphome/esphome.git
synced 2026-01-08 19:20:51 -07:00
[preferences] Fix preferences not syncing in safe mode due to component registration order (#13041)
This commit is contained in:
@@ -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]))
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user