mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Increase tado API polling interval to 5 minutes (#46915)
Polling interval of 15 seconds causes high load on tado servers and does not provide enough value to warrant it. tado plans to introduce a rate limit to prevent such misuse of the API, therefore the polling interval needs to be increased to make sure the integration works well in the future.
This commit is contained in:
parent
6e10b39d67
commit
5907129b25
@ -33,8 +33,8 @@ _LOGGER = logging.getLogger(__name__)
|
||||
|
||||
TADO_COMPONENTS = ["binary_sensor", "sensor", "climate", "water_heater"]
|
||||
|
||||
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=10)
|
||||
SCAN_INTERVAL = timedelta(seconds=15)
|
||||
MIN_TIME_BETWEEN_UPDATES = timedelta(minutes=4)
|
||||
SCAN_INTERVAL = timedelta(minutes=5)
|
||||
|
||||
CONFIG_SCHEMA = cv.deprecated(DOMAIN)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user