From 5494e1d47e6a5c1428d6e9039dd1934343bbacbd Mon Sep 17 00:00:00 2001 From: bskjon Date: Thu, 17 Oct 2024 03:08:06 +0200 Subject: [PATCH] Default --- apps/pyMetadata/app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/pyMetadata/app.py b/apps/pyMetadata/app.py index efde61a9..1c05f727 100644 --- a/apps/pyMetadata/app.py +++ b/apps/pyMetadata/app.py @@ -50,6 +50,9 @@ logging.basicConfig( logger = logging.getLogger(__name__) class EventsPullerThread(threading.Thread): + + connection: PooledMySQLConnection | MySQLConnectionAbstract | None = None + def __init__(self): super().__init__() self.shutdown = threading.Event()