From a211bd3156a330e9c51cc63354ac389eecc049fd Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 8 Oct 2025 16:30:56 +0200 Subject: [PATCH] Fix: Properly call the function --- src/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db.py b/src/db.py index 852e421..42940c7 100644 --- a/src/db.py +++ b/src/db.py @@ -48,7 +48,7 @@ def get_connection_pool(): global _connection_pool with _pool_lock: if _connection_pool is None: - create_connection_pool + create_connection_pool() return _connection_pool def get_db():