diff options
author | 2024-07-14 19:49:30 +0530 | |
---|---|---|
committer | 2024-07-14 19:49:30 +0530 | |
commit | 5ce142d02aa1ea3c03a4f3205d924ea5b30ebfd4 (patch) | |
tree | fcf5b73ba6b27c55399cb25330c64b95a98de80e | |
parent | added handler for message.reference.resolved if its None (diff) | |
parent | Remove Redis max connections limit (diff) |
Merge branch 'main' into main
-rw-r--r-- | bot/__main__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 42b3c0c95..540c97d1b 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -22,7 +22,6 @@ async def _create_redis_session() -> RedisSession: host=constants.Redis.host, port=constants.Redis.port, password=constants.Redis.password, - max_connections=20, use_fakeredis=constants.Redis.use_fakeredis, global_namespace="bot", decode_responses=True, |