Skip to content

Commit f8a9666

Browse files
committed
remove timeout
1 parent ccfc3d1 commit f8a9666

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

matter_server/server/device_controller.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import time
1515
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Iterable, TypeVar, cast
1616

17-
import async_timeout
1817
from chip.ChipDeviceCtrl import DeviceProxyWrapper
1918
from chip.clusters import Attribute, Objects as Clusters
2019
from chip.clusters.Attribute import ValueDecodeFailure
@@ -63,8 +62,6 @@
6362
DATA_KEY_NODES = "nodes"
6463
DATA_KEY_LAST_NODE_ID = "last_node_id"
6564

66-
DEFAULT_CALL_TIMEOUT = 300
67-
6865
LOGGER = logging.getLogger(__name__)
6966
MIN_NODE_SUBSCRIPTION_CEILING = 30
7067
MAX_NODE_SUBSCRIPTION_CEILING = 300
@@ -1058,7 +1055,6 @@ async def _call_sdk(
10581055
self,
10591056
target: Callable[..., _T] | Awaitable[_T],
10601057
*args: Any,
1061-
call_timeout: int = DEFAULT_CALL_TIMEOUT,
10621058
**kwargs: Any,
10631059
) -> _T:
10641060
"""Call function on the SDK in executor and return result."""
@@ -1073,10 +1069,8 @@ async def _call_sdk(
10731069
)
10741070
# we guard all calls to the sdk with a lock because we have no good way
10751071
# of knowing if all code in the python wrapper is thread safe.
1076-
# The additional timeout is a guard to prevent ourselves from deadlocking somehow.
1077-
async with async_timeout.timeout(call_timeout):
1078-
async with self._sdk_lock:
1079-
return cast(_T, await target)
1072+
async with self._sdk_lock:
1073+
return cast(_T, await target)
10801074

10811075
async def _setup_node(self, node_id: int) -> None:
10821076
"""Handle set-up of subscriptions and interview (if needed) for known/discovered node."""

0 commit comments

Comments
 (0)