From 4e99e30f165d4e6dc12e1fa2aefbba790b96211f Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 5 May 2023 11:06:00 -0400 Subject: [PATCH] Ensure conf is imported for threads/tx Import the conf for threads/tx.py to ensure that the msg_rate_limit_period is defined prior to the conf entry being referenced. --- aprsd/threads/tx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aprsd/threads/tx.py b/aprsd/threads/tx.py index 64973a5..5dea4dd 100644 --- a/aprsd/threads/tx.py +++ b/aprsd/threads/tx.py @@ -6,6 +6,7 @@ from oslo_config import cfg from ratelimiter import RateLimiter from aprsd import client +from aprsd import conf # noqa from aprsd import threads as aprsd_threads from aprsd.packets import core, tracker