1
mirror of https://github.com/home-assistant/core synced 2024-09-15 17:29:45 +02:00

Reduce Ring TTL (#52277)

This commit is contained in:
Paulus Schoutsen 2021-06-28 23:57:32 -07:00 committed by GitHub
parent 8dd545d060
commit bb4d3bfc60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ from homeassistant.util import dt as dt_util
from . import ATTRIBUTION, DOMAIN
from .entity import RingEntityMixin
FORCE_REFRESH_INTERVAL = timedelta(minutes=45)
FORCE_REFRESH_INTERVAL = timedelta(minutes=3)
_LOGGER = logging.getLogger(__name__)