Skip to content

Commit de438de

Browse files
committed
Use packet priority
1 parent 1a0b8a7 commit de438de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bellows/zigbee/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ async def send_packet(self, packet: zigpy.types.ZigbeePacket) -> None:
741741
# Source routing uses address discovery to discover routes
742742
aps_frame.options |= t.EmberApsOption.APS_OPTION_ENABLE_ADDRESS_DISCOVERY
743743

744-
async with self._limit_concurrency():
744+
async with self._limit_concurrency(priority=packet.priority):
745745
message_tag = self.get_sequence()
746746
pending_tag = (packet.dst.address, message_tag)
747747
with self._pending.new(pending_tag) as req:

0 commit comments

Comments
 (0)