This commit is contained in:
bskjon 2024-10-17 03:08:06 +02:00
parent ae2887fdea
commit 5494e1d47e

View File

@ -50,6 +50,9 @@ logging.basicConfig(
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
class EventsPullerThread(threading.Thread): class EventsPullerThread(threading.Thread):
connection: PooledMySQLConnection | MySQLConnectionAbstract | None = None
def __init__(self): def __init__(self):
super().__init__() super().__init__()
self.shutdown = threading.Event() self.shutdown = threading.Event()