cloudflare / goflow

The high-scalability sFlow/NetFlow/IPFIX collector used internally at Cloudflare.
BSD 3-Clause "New" or "Revised" License
852 stars 171 forks source link

Fix data race with templates and sampling #83

Closed davmatjo closed 4 years ago

davmatjo commented 4 years ago

Fixes #82

Acquire the RLock() and release it immediately after read, then optionally acquire the full Lock() if templates or sampling need to be written to.

Running with go build -race with these changes shows no data races.