Reduce roku scan interval by 5s (#36966)

This commit is contained in:
Chris Talkington 2020-06-21 04:40:05 -05:00 committed by GitHub
parent 6c2dc521a3
commit 4a432781ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ CONFIG_SCHEMA = vol.Schema(
)
PLATFORMS = [MEDIA_PLAYER_DOMAIN, REMOTE_DOMAIN]
SCAN_INTERVAL = timedelta(seconds=20)
SCAN_INTERVAL = timedelta(seconds=15)
_LOGGER = logging.getLogger(__name__)