diff --git a/pubsub.go b/pubsub.go index 936fc5d8..c56270b4 100644 --- a/pubsub.go +++ b/pubsub.go @@ -528,7 +528,7 @@ func (c *PubSub) initMsgChan(size int) { return } if errCount > 0 { - time.Sleep(c.retryBackoff(errCount)) + time.Sleep(100 * time.Millisecond) } errCount++ continue @@ -586,7 +586,7 @@ func (c *PubSub) initAllChan(size int) { return } if errCount > 0 { - time.Sleep(c.retryBackoff(errCount)) + time.Sleep(100 * time.Millisecond) } errCount++ continue @@ -627,7 +627,3 @@ func (c *PubSub) sendMessage(msg interface{}, timer *time.Timer) { "redis: %s channel is full for %s (message is dropped)", c, pingTimeout) } } - -func (c *PubSub) retryBackoff(attempt int) time.Duration { - return internal.RetryBackoff(attempt, c.opt.MinRetryBackoff, c.opt.MaxRetryBackoff) -}