Skip to content

Commit b021322

Browse files
Some small tweaks to the subscripions logic (#676)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
1 parent 7b032fc commit b021322

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

matter_server/client/client.py

+11
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from ..common.helpers.util import (
1919
convert_ip_address,
2020
convert_mac_address,
21+
create_attribute_path_from_attribute,
2122
dataclass_from_dict,
2223
dataclass_to_dict,
2324
)
@@ -218,6 +219,16 @@ async def get_matter_fabrics(self, node_id: int) -> list[MatterFabricData]:
218219
"""
219220

220221
node = self.get_node(node_id)
222+
223+
# refresh node's fabrics if the node is available so we have the latest info
224+
if node.available:
225+
await self.refresh_attribute(
226+
node_id,
227+
create_attribute_path_from_attribute(
228+
0, Clusters.OperationalCredentials.Attributes.Fabrics
229+
),
230+
)
231+
221232
fabrics: list[
222233
Clusters.OperationalCredentials.Structs.FabricDescriptorStruct
223234
] = node.get_attribute_value(

matter_server/server/device_controller.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
DATA_KEY_LAST_NODE_ID = "last_node_id"
6767

6868
LOGGER = logging.getLogger(__name__)
69-
NODE_SUBSCRIPTION_CEILING_WIFI = 30
69+
NODE_SUBSCRIPTION_CEILING_WIFI = 60
7070
NODE_SUBSCRIPTION_CEILING_THREAD = 60
7171
NODE_SUBSCRIPTION_CEILING_BATTERY_POWERED = 600
7272
MAX_COMMISSION_RETRIES = 3
@@ -1090,8 +1090,6 @@ def resubscription_succeeded(
10901090
events=[("*", 1)],
10911091
returnClusterObject=False,
10921092
reportInterval=(interval_floor, interval_ceiling),
1093-
fabricFiltered=False,
1094-
keepSubscriptions=True,
10951093
autoResubscribe=True,
10961094
)
10971095

0 commit comments

Comments
 (0)