Update the packet_dupe_timeout warning

The warning text was hardcoded at the old 60 second value,
instead of using the config option.
This commit is contained in:
Hemna 2023-10-06 16:06:41 -04:00
parent 5ae45ce42f
commit bf905a0e9f
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class APRSDPluginRXThread(APRSDRXThread):
else:
LOG.warning(
f"Packet {packet.from_call}:{packet.msgNo} already tracked "
"but older than 60 seconds. processing.",
f"but older than {CONF.packet_dupe_timeout} seconds. processing.",
)
pkt_list.rx(packet)
self.packet_queue.put(packet)