-
-
Notifications
You must be signed in to change notification settings - Fork 45
Make neighbors routing tables access mutual exclusive #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hi @drwtsn95, thanks for the PR. Have you run into this concurrent map access issue yourself? I'm asking because |
Hi! I have encountered it into |
|
Ah this makes sense now! There are multiple workers writing visits into the DB and every single one is appending to the map concurrently. Guarding the Thanks for the patch and for reporting! |
Fixed dataraces encountered when
--neighbors=true
.