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
remove a data race by compiling the exclude regexes in the preprocess phase (#677)
the regex compilation was done lazily on first access but did not properly synchronize
for being accessed by multiple watcher goroutines
between the option of adding a mutex for something that (should) only ever happen
once and removing the potential for a race, this seems like the better choice
0 commit comments