Files
vault/changelog/27014.txt
Steven Clark 029d151f0f Address a data race setting seal wrapper health attributes (#27014)
* Address a data race setting seal wrapper health attributes

 - When updating a seal wrapper's lastHealthCheck in a failure scenario
   we would read the lastSeenHealthy value in order to not update it
   outside of a locked context. This lead to the data race.

 - Merge the SetHealthy and setHealthy functions into one, in order
   to combine the logic and locking in a single function

* Add cl
2024-05-14 15:06:13 +00:00

4 lines
101 B
Plaintext

```release-note:bug
core: Address a data race updating a seal's last seen healthy time attribute
```