Skip to content

Commit 14d95cc

Browse files
authored
Temporary raise scan interval for Alexa Devices (home-assistant#157326)
1 parent 4257435 commit 14d95cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

homeassistant/components/alexa_devices/coordinator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
from .const import _LOGGER, CONF_LOGIN_DATA, DOMAIN
2323

24-
SCAN_INTERVAL = 30
24+
SCAN_INTERVAL = 300
2525

2626
type AmazonConfigEntry = ConfigEntry[AmazonDevicesCoordinator]
2727

@@ -45,7 +45,7 @@ def __init__(
4545
config_entry=entry,
4646
update_interval=timedelta(seconds=SCAN_INTERVAL),
4747
request_refresh_debouncer=Debouncer(
48-
hass, _LOGGER, cooldown=30, immediate=False
48+
hass, _LOGGER, cooldown=SCAN_INTERVAL, immediate=False
4949
),
5050
)
5151
self.api = AmazonEchoApi(

0 commit comments

Comments
 (0)