14
14
import time
15
15
from typing import TYPE_CHECKING , Any , Awaitable , Callable , Iterable , TypeVar , cast
16
16
17
- import async_timeout
18
17
from chip .ChipDeviceCtrl import DeviceProxyWrapper
19
18
from chip .clusters import Attribute , Objects as Clusters
20
19
from chip .clusters .Attribute import ValueDecodeFailure
63
62
DATA_KEY_NODES = "nodes"
64
63
DATA_KEY_LAST_NODE_ID = "last_node_id"
65
64
66
- DEFAULT_CALL_TIMEOUT = 300
67
-
68
65
LOGGER = logging .getLogger (__name__ )
69
66
MIN_NODE_SUBSCRIPTION_CEILING = 30
70
67
MAX_NODE_SUBSCRIPTION_CEILING = 300
@@ -1058,7 +1055,6 @@ async def _call_sdk(
1058
1055
self ,
1059
1056
target : Callable [..., _T ] | Awaitable [_T ],
1060
1057
* args : Any ,
1061
- call_timeout : int = DEFAULT_CALL_TIMEOUT ,
1062
1058
** kwargs : Any ,
1063
1059
) -> _T :
1064
1060
"""Call function on the SDK in executor and return result."""
@@ -1073,10 +1069,8 @@ async def _call_sdk(
1073
1069
)
1074
1070
# we guard all calls to the sdk with a lock because we have no good way
1075
1071
# 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 )
1080
1074
1081
1075
async def _setup_node (self , node_id : int ) -> None :
1082
1076
"""Handle set-up of subscriptions and interview (if needed) for known/discovered node."""
0 commit comments