From 158f15cd57389022dba1daa7e7308c85cc584053 Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Mon, 17 Feb 2025 12:32:30 +0000 Subject: [PATCH] adjust report_usage parameters --- homeassistant/helpers/update_coordinator.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/homeassistant/helpers/update_coordinator.py b/homeassistant/helpers/update_coordinator.py index 6c19aa5f0be..60e81d35b74 100644 --- a/homeassistant/helpers/update_coordinator.py +++ b/homeassistant/helpers/update_coordinator.py @@ -90,8 +90,9 @@ class DataUpdateCoordinator(BaseDataUpdateCoordinatorProtocol, Generic[_DataT]): frame.report_usage( "rely on the ContextVar, but should passing the config entry explicitly - see " "https://developers.home-assistant.io/blog/xxxxxxx", - core_behavior=frame.ReportBehavior.ERROR, - custom_integration_behavior=frame.ReportBehavior.LOG, + core_behavior=frame.ReportBehavior.LOG, + core_integration_behavior=frame.ReportBehavior.LOG, + custom_integration_behavior=frame.ReportBehavior.IGNORE, breaks_in_ha_version="2026.3", )