()
| 251 | } |
| 252 | |
| 253 | public getClientOptions(): Partial<RedisOptions['options']> { |
| 254 | const retryStrategy = (times: number) => this.createRetryStrategy(times); |
| 255 | |
| 256 | return { |
| 257 | ...(this.options || {}), |
| 258 | retryStrategy, |
| 259 | }; |
| 260 | } |
| 261 | |
| 262 | public createRetryStrategy(times: number): undefined | number | void { |
| 263 | if (this.isManuallyClosed) { |