mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 18:17:55 +00:00
[VAULT-21623] Close rate-limit client purge goroutines when sealing (#24108)
* close purge goroutines when sealing * add changelog
This commit is contained in:
3
changelog/24108.txt
Normal file
3
changelog/24108.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
```release-note:bug
|
||||||
|
core/quotas: Close rate-limit blocked client purge goroutines when sealing
|
||||||
|
```
|
||||||
@@ -865,6 +865,13 @@ func (m *Manager) resetCache() error {
|
|||||||
}
|
}
|
||||||
if quota != nil {
|
if quota != nil {
|
||||||
rlq := quota.(*RateLimitQuota)
|
rlq := quota.(*RateLimitQuota)
|
||||||
|
|
||||||
|
// Cancel the quota's purgeBlockedClients goroutine
|
||||||
|
err = rlq.close(context.Background())
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
err = rlq.store.Close(context.Background())
|
err = rlq.store.Close(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
Reference in New Issue
Block a user