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
init
seems next global variable creation:
var defaultClient = New()
Does network activity: NewUserConfig -> net.ResolveTCPAddr("tcp", fmt.Sprintf("[%s]:0", address)) and then mutating net.DefaultResolver.Dial
NewUserConfig
net.ResolveTCPAddr("tcp", fmt.Sprintf("[%s]:0", address))
net.DefaultResolver.Dial
seems it's not thread-safe in golang (in OS's C libraries which used by golang).
And on some OS this race-condition caused crash: erigontech/erigon#12570
We still collecting evidences: i may be a bit wrong
The text was updated successfully, but these errors were encountered:
No branches or pull requests
seems next global variable creation:
Does network activity:
NewUserConfig
->net.ResolveTCPAddr("tcp", fmt.Sprintf("[%s]:0", address))
and then mutating
net.DefaultResolver.Dial
seems it's not thread-safe in golang (in OS's C libraries which used by golang).
And on some OS this race-condition caused crash: erigontech/erigon#12570
We still collecting evidences: i may be a bit wrong
The text was updated successfully, but these errors were encountered: