change default timeout for ack to 6

This commit is contained in:
Florent de Lamotte 2025-03-06 09:52:35 +01:00
parent 8629e7ed69
commit fbd422b247

View file

@ -516,7 +516,7 @@ class MeshCore:
""" Wait for a message """
await self.rx_sem.acquire()
async def wait_ack(self, timeout=10):
async def wait_ack(self, timeout=6):
""" Wait ack """
try:
await asyncio.wait_for(self.ack_ev.wait(), timeout)