From d0b0e71ab97de1ec5a3930e536215ecf610f46ef Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Mon, 30 Aug 2021 20:28:38 +0300 Subject: [PATCH] prepare v0.18.2 --- changelog.md | 5 +++++ redis_shard.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index cd03243e..a0764c31 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,8 @@ +v0.18.2 +======= + +* Redis: reload data pipeline immediately upon reconnect, this should help to avoid one additional error after reconnecting to Redis + v0.18.1 ======= diff --git a/redis_shard.go b/redis_shard.go index 5772cac5..6e2e9211 100644 --- a/redis_shard.go +++ b/redis_shard.go @@ -253,7 +253,7 @@ func (s *RedisShard) registerScripts(scripts ...*redis.Script) { // Best effort to process a signal for reloading data pipeline if we know // that connection should be re-established. If the signal can't be processed -// then pipeline will be automatically reload upon first error from Redis. +// then pipeline will be automatically reloaded upon first error from Redis. func (s *RedisShard) reloadPipeline() { select { case s.reloadPipelineCh <- struct{}{}: