mirror of
https://github.com/craigerl/aprsd.git
synced 2024-12-18 23:55:58 -05:00
another fix for tx send
This commit is contained in:
parent
758ea432ed
commit
3e8716365e
@ -79,7 +79,6 @@ def _send_direct(packet, aprs_client=None):
|
|||||||
packet_log.log(packet, tx=True)
|
packet_log.log(packet, tx=True)
|
||||||
try:
|
try:
|
||||||
cl.send(packet)
|
cl.send(packet)
|
||||||
packet.send_count += 1
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
LOG.error(f"Failed to send packet: {packet}")
|
LOG.error(f"Failed to send packet: {packet}")
|
||||||
LOG.error(e)
|
LOG.error(e)
|
||||||
@ -119,7 +118,7 @@ class SendPacketThread(aprsd_threads.APRSDThread):
|
|||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
send_now = False
|
send_now = False
|
||||||
if packet.send_count == packet.retry_count:
|
if packet.send_count >= packet.retry_count:
|
||||||
# we reached the send limit, don't send again
|
# we reached the send limit, don't send again
|
||||||
# TODO(hemna) - Need to put this in a delayed queue?
|
# TODO(hemna) - Need to put this in a delayed queue?
|
||||||
LOG.info(
|
LOG.info(
|
||||||
|
Loading…
Reference in New Issue
Block a user