Reduce ovo_energy polling rate to be less aggressive (#51613)
* Reduce polling rate to be less aggressive The current polling rate is too aggressive for the purpose, this commit reduces it to 12 hours to play nice with OVO. * tweak polling to hourly
This commit is contained in:
parent
502939c430
commit
fa42c676bb
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||
name="sensor",
|
||||
update_method=async_update_data,
|
||||
# Polling interval. Will only be polled if there are subscribers.
|
||||
update_interval=timedelta(seconds=300),
|
||||
update_interval=timedelta(seconds=3600),
|
||||
)
|
||||
|
||||
hass.data.setdefault(DOMAIN, {})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue