We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our application crashed with the following error:
fatal error: concurrent map writes goroutine 7975 [running]: github.com/posthog/posthog-go.(*SizeLimitedMap).add(...) /src/vendor/github.com/posthog/posthog-go/util.go:26 github.com/posthog/posthog-go.(*client).GetFeatureFlag(0xc000b7a100, {{0x1e0b64c, 0x2d}, {0x1dbe3a5, 0xc}, 0xc0017f8780, 0xc0017f87b0, 0xc0017f87e0, 0x0, 0xc0005abfb0})
It appears there was a concurrent write on the sizeLimitedMap.ids map.
sizeLimitedMap.ids
Go's maps do not support safe concurrent writes.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Our application crashed with the following error:
It appears there was a concurrent write on the
sizeLimitedMap.ids
map.Go's maps do not support safe concurrent writes.
The text was updated successfully, but these errors were encountered: