From 3a722eca04b8718920241118c7af1605d3ed2f65 Mon Sep 17 00:00:00 2001 From: Florian Date: Mon, 13 Oct 2025 08:19:01 +0200 Subject: [PATCH] Removed health check invocation message --- src/db.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/db.py b/src/db.py index fe1d27f..653ed8d 100644 --- a/src/db.py +++ b/src/db.py @@ -39,7 +39,7 @@ def create_connection_pool(): try: logger.info(f"[MySQL] Attempt {attempt} to connect...") pool = pooling.MySQLConnectionPool( - pool_name="royalroadPool", + pool_name="repositoryQueryPool", pool_size=5, pool_reset_session=True, **MYSQL_CONFIG @@ -101,7 +101,6 @@ def _pool_healthcheck(): conn = pool.get_connection() conn.ping(reconnect=True, attempts=3, delay=1) conn.close() - logger.debug("[MySQL] Pool healthcheck OK.") except Error as e: logger.warning(f"[MySQL] Pool healthcheck failed: {e}") create_connection_pool()