reduce roku scan interval by 10s (#35433)

This commit is contained in:
Chris Talkington 2020-05-09 17:55:23 -05:00 committed by GitHub
parent 42fc332123
commit 0fabd73ad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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