From 59f0cc0873fe18f41d677a937028d80a0db2d9f2 Mon Sep 17 00:00:00 2001 From: Yonatan Abir Date: Wed, 11 Feb 2026 16:25:37 +0200 Subject: [PATCH] [DEVOPS-3839] limiting max connections to 50 --- CHANGELOG.md | 2 +- talker/client.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dab9b4e..bb165d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] - +Set max connections to 50 for client ## [1.9.9] - 2025-09-28 - Changed client retry ## [1.9.8] - 2025-08-21 diff --git a/talker/client.py b/talker/client.py index 83f68de..8107909 100644 --- a/talker/client.py +++ b/talker/client.py @@ -31,7 +31,8 @@ def get_redis(host, password, port): socket_timeout=REDIS_SOCKET_TIMEOUT, socket_connect_timeout=REDIS_SOCKET_CONNECT_TIMEOUT, retry_on_timeout=REDIS_RETRY_ON_TIMEOUT, - health_check_interval=REDIS_HEALTH_CHECK_INTERVAL + health_check_interval=REDIS_HEALTH_CHECK_INTERVAL, + max_connections=50 )