[VAULT-21623] Close rate-limit client purge goroutines when sealing (#24108)

* close purge goroutines when sealing

* add changelog
This commit is contained in:
davidadeleon 2023-11-15 08:49:29 -05:00 committed by GitHub
parent a0562419ce
commit 0ab8cfdff6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

3
changelog/24108.txt Normal file
View file

@ -0,0 +1,3 @@
```release-note:bug
core/quotas: Close rate-limit blocked client purge goroutines when sealing
```

View file

@ -865,6 +865,13 @@ func (m *Manager) resetCache() error {
}
if quota != nil {
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())
if err != nil {
return err