Change ssdp scanning interval to 2 minutes (#64688)

This commit is contained in:
J. Nick Koston 2022-01-22 07:12:58 -10:00 committed by GitHub
parent 5e71e7b775
commit 30eacdbea0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ from homeassistant.helpers.typing import ConfigType
from homeassistant.loader import async_get_ssdp, bind_hass
DOMAIN = "ssdp"
SCAN_INTERVAL = timedelta(seconds=60)
SCAN_INTERVAL = timedelta(minutes=2)
IPV4_BROADCAST = IPv4Address("255.255.255.255")