Closed
Description
We exchanged our old redis setup:
@pool = ConnectionPool.new(size: 5, timeout: 5) { Redis.new(url: Settings.redis.url, ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }) }
with redis-client this morning:
redis_config = RedisClient.config(url: Settings.redis.url, ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE })
@pool = redis_config.new_pool(timeout: 5, size: 5)
Most things work fine, but we got a few RedisClient::ConnectionError Broken pipe
errors since upgrading. Any pointers on how to debug this, and what the reason could be?
Metadata
Metadata
Assignees
Labels
No labels