fix(connector.py): fix hanging ACK double check in send_hello()

This commit is contained in:
2025-08-30 18:42:33 +02:00
parent a25908bf46
commit 30b2305dd1

View File

@@ -156,7 +156,7 @@ class Connector:
hello_message: Message = Message.hello(self.mac_address)
acknowledged: bool = False
while not acknowledged:
self.send(hello_message.to_bytes())
self.send(hello_message.to_bytes(), no_check_ack=True)
self.logger.debug("[.] Hello message sent, waiting for ACK...")
acknowledged = self._check_ack()
if not acknowledged: