add comment

This commit is contained in:
Caleb Doxsey 2024-05-01 08:52:46 -06:00
parent 0b147927c3
commit 3148e4947f

View file

@ -37,6 +37,9 @@ func newUpdateUserInfoScheduler(
}
func (uuis *updateUserInfoScheduler) Reset() {
// trigger a reset by sending to the reset channel, which is buffered,
// so if we can't proceed there's already a pending reset and no need
// to wait
select {
case uuis.reset <- struct{}{}:
default: