bug redis port

This commit is contained in:
古月 2024-08-26 17:55:27 +08:00
parent d371607507
commit 0a6f5df0d5
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -160,3 +160,5 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/
log/
.DS_Store

View File

@ -17,7 +17,6 @@ class DevConfig(Config):
REDIS_ENDPOINT=os.getenv('REDIS_ENDPOINT', "localhost"),
REDIS_PORT=int(os.getenv('REDIS_PORT', 6379)),
REDIS_PASSWORD=os.getenv('REDIS_PASSWORD', None),
REDIS_PORT=6379,
CACHE_DB=0,
SESSION_DB=1,
POOLSIZE=10,