Rename ConnectionManager to DatabaseConnectionManager to fix import error

This commit is contained in:
pacnpal
2024-11-16 17:41:25 +00:00
parent 771c32e11b
commit bdc1ce4f4c

View File

@@ -10,7 +10,7 @@ from queue import Queue, Empty
logger = logging.getLogger("DBConnectionManager") logger = logging.getLogger("DBConnectionManager")
class ConnectionManager: class DatabaseConnectionManager:
"""Manages SQLite database connections and connection pooling""" """Manages SQLite database connections and connection pooling"""
def __init__(self, db_path: Path, pool_size: int = 5): def __init__(self, db_path: Path, pool_size: int = 5):