Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information