You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per Go documentation recommendation (e.g.
[link](https://pkg.go.dev/sync/atomic#AddUint64)), use the `atomic`
types and their associated methods instead of the
`atomic.Add*`/`.Store*` functions.
This makes the intent for atomic access clearer, prevents (accidental)
non-atomic access, and (for boolean variables) simplifies code.
Signed-off-by: Hamza El-Saawy <[email protected]>
0 commit comments