mirror of
https://github.com/redis/go-redis.git
synced 2025-07-28 06:42:00 +03:00
Initial re authentication implementation
Introduces the StreamingCredentialsProvider as the CredentialsProvider with the highest priority. TODO: needs to be tested
This commit is contained in:
@ -212,10 +212,10 @@ func TestRingShardsCleanup(t *testing.T) {
|
||||
},
|
||||
NewClient: func(opt *Options) *Client {
|
||||
c := NewClient(opt)
|
||||
c.baseClient.onClose = func() error {
|
||||
c.baseClient.onClose = c.baseClient.wrappedOnClose(func() error {
|
||||
closeCounter.increment(opt.Addr)
|
||||
return nil
|
||||
}
|
||||
})
|
||||
return c
|
||||
},
|
||||
})
|
||||
@ -261,10 +261,10 @@ func TestRingShardsCleanup(t *testing.T) {
|
||||
}
|
||||
createCounter.increment(opt.Addr)
|
||||
c := NewClient(opt)
|
||||
c.baseClient.onClose = func() error {
|
||||
c.baseClient.onClose = c.baseClient.wrappedOnClose(func() error {
|
||||
closeCounter.increment(opt.Addr)
|
||||
return nil
|
||||
}
|
||||
})
|
||||
return c
|
||||
},
|
||||
})
|
||||
|
Reference in New Issue
Block a user