Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion zha/application/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,9 @@ def load_groups(self) -> None:
@property
def radio_concurrency(self) -> int:
"""Maximum configured radio concurrency."""
return self.application_controller._concurrent_requests_semaphore.max_value # pylint: disable=protected-access
return (
self.application_controller._concurrent_requests_semaphore.max_concurrency
) # pylint: disable=protected-access

async def async_fetch_updated_state_mains(self) -> None:
"""Fetch updated state for mains powered devices."""
Expand Down
Loading