From 787a3047683b3b9fffab19db2b592b57fb20fe4b Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 21 Jul 2026 18:09:52 +0800 Subject: [PATCH] fix: use mysql driver, AES encrypted password, remove minsize/maxsize --- conf/config.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/conf/config.json b/conf/config.json index 2a22233..b9b3fd4 100644 --- a/conf/config.json +++ b/conf/config.json @@ -2,16 +2,14 @@ "password_key": "RagServer2026Key", "databases": { "rag": { - "driver": "mysql+aiomysql", + "driver": "mysql", "kwargs": { "host": "db", "port": 3306, "user": "test", - "password": "test123", + "password": "cybEz86hASifn+iwFHirOQ==", "db": "rag", - "charset": "utf8mb4", - "minsize": 2, - "maxsize": 10 + "charset": "utf8mb4" } } },