Change update interval from 60s to 10s for Uptime Robot (#54230)

pull/54239/head
Joakim Sørensen 2021-08-07 20:22:02 +02:00 committed by GitHub
parent 819131ad21
commit 3b1d44478a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,8 @@ from typing import Final
LOGGER: Logger = getLogger(__package__)
COORDINATOR_UPDATE_INTERVAL: timedelta = timedelta(seconds=60)
# The free plan is limited to 10 requests/minute
COORDINATOR_UPDATE_INTERVAL: timedelta = timedelta(seconds=10)
DOMAIN: Final = "uptimerobot"
PLATFORMS: Final = ["binary_sensor"]