We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b05c9b4 commit f41d752Copy full SHA for f41d752
matter_server/server/device_controller.py
@@ -112,7 +112,9 @@ def __init__(
112
self._node_lock: dict[int, asyncio.Lock] = {}
113
self._aiobrowser: AsyncServiceBrowser | None = None
114
self._aiozc: AsyncZeroconf | None = None
115
- self._sdk_executor = ThreadPoolExecutor(max_workers=1)
+ self._sdk_executor = ThreadPoolExecutor(
116
+ max_workers=1, thread_name_prefix="SDKExecutor"
117
+ )
118
119
async def initialize(self) -> None:
120
"""Async initialize of controller."""
0 commit comments