We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5fe174 commit 7ebb537Copy full SHA for 7ebb537
ring.go
@@ -84,8 +84,6 @@ type RingOptions struct {
84
WriteTimeout time.Duration
85
ContextTimeoutEnabled bool
86
87
- ContextTimeoutEnabled bool
88
-
89
// PoolFIFO uses FIFO mode for each node connection pool GET/PUT (default LIFO).
90
PoolFIFO bool
91
@@ -155,8 +153,6 @@ func (opt *RingOptions) clientOptions() *Options {
155
153
WriteTimeout: opt.WriteTimeout,
156
154
ContextTimeoutEnabled: opt.ContextTimeoutEnabled,
157
158
- ContextTimeoutEnabled: opt.ContextTimeoutEnabled,
159
160
PoolFIFO: opt.PoolFIFO,
161
PoolSize: opt.PoolSize,
162
PoolTimeout: opt.PoolTimeout,
0 commit comments