Skip to content

Commit

Permalink
Update device_controller.py
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Feb 29, 2024
1 parent 3514f50 commit bdaeb2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion matter_server/server/device_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,10 @@ def __init__(
self._node_lock: dict[int, asyncio.Lock] = {}
self._aiobrowser: AsyncServiceBrowser | None = None
self._aiozc: AsyncZeroconf | None = None
self._sdk_executor = ThreadPoolExecutor(max_workers=1)
self._fallback_node_scanner_timer: asyncio.TimerHandle | None = None
self._sdk_executor = ThreadPoolExecutor(
max_workers=1, thread_name_prefix="SDKExecutor"
)

async def initialize(self) -> None:
"""Async initialize of controller."""
Expand Down

0 comments on commit bdaeb2c

Please sign in to comment.