mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
Set PARALLEL_UPDATES to 0 in onewire (#135178)
This commit is contained in:
parent
8bfdbc173a
commit
4a33b1d936
@ -19,7 +19,9 @@ from .const import DEVICE_KEYS_0_3, DEVICE_KEYS_0_7, DEVICE_KEYS_A_B, READ_MODE_
|
||||
from .entity import OneWireEntity, OneWireEntityDescription
|
||||
from .onewirehub import OneWireConfigEntry, OneWireHub
|
||||
|
||||
PARALLEL_UPDATES = 1
|
||||
# the library uses non-persistent connections
|
||||
# and concurrent access to the bus is managed by the server
|
||||
PARALLEL_UPDATES = 0
|
||||
SCAN_INTERVAL = timedelta(seconds=30)
|
||||
|
||||
|
||||
|
@ -41,7 +41,9 @@ from .const import (
|
||||
from .entity import OneWireEntity, OneWireEntityDescription
|
||||
from .onewirehub import OneWireConfigEntry, OneWireHub
|
||||
|
||||
PARALLEL_UPDATES = 1
|
||||
# the library uses non-persistent connections
|
||||
# and concurrent access to the bus is managed by the server
|
||||
PARALLEL_UPDATES = 0
|
||||
SCAN_INTERVAL = timedelta(seconds=30)
|
||||
|
||||
|
||||
|
@ -16,7 +16,9 @@ from .const import DEVICE_KEYS_0_3, DEVICE_KEYS_0_7, DEVICE_KEYS_A_B, READ_MODE_
|
||||
from .entity import OneWireEntity, OneWireEntityDescription
|
||||
from .onewirehub import OneWireConfigEntry, OneWireHub
|
||||
|
||||
PARALLEL_UPDATES = 1
|
||||
# the library uses non-persistent connections
|
||||
# and concurrent access to the bus is managed by the server
|
||||
PARALLEL_UPDATES = 0
|
||||
SCAN_INTERVAL = timedelta(seconds=30)
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user