From 2c44e77664ef3806ad829b4e70ca071fe6dcfeee Mon Sep 17 00:00:00 2001 From: Franklin-F Date: Sat, 17 May 2025 15:37:09 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6=E5=92=8C=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=BF=9E=E6=8E=A5=E8=AE=BE=E7=BD=AE=EF=BC=8C=E6=9B=B4?= =?UTF-8?q?=E6=96=B0.gitignore=E4=BB=A5=E6=8E=92=E9=99=A4=E4=B8=8D?= =?UTF-8?q?=E5=BF=85=E8=A6=81=E7=9A=84=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DB.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DB.py b/DB.py index 720b3da..35c4561 100644 --- a/DB.py +++ b/DB.py @@ -6,8 +6,8 @@ import time class DBVidcon: _MYSQL_CONF = { - "host": "192.144.230.75", - "port": 3306, + "host": "192.144.230.75", # "127.0.0.1", # + "port": 3306, # 3307, # "user": "db_vidcon", "password": "rexdK4fhCCiRE4BZ", "database": "db_vidcon", @@ -15,8 +15,8 @@ class DBVidcon: "cursorclass": pymysql.cursors.DictCursor, } _REDIS_CONF = { - "host": "192.144.230.75", - "port": 6379, + "host": "192.144.230.75", # "127.0.0.1", # + "port": 6379, # 6380, # "password": "qwert@$123!&", "decode_responses": True, }