You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only.
Go version
go1.23
Output of
go env
in your module/workspace:What did you do?
I use md5 generation for getting hashes for business segments. In production I have several goroutines for this.
https://go.dev/play/p/4V9wMX0xO-w
After small optimization:
I start getting panics. If I return making md5.New() each time before getting .Sum(nil) — it works fine.
What did you see happen?
Im getting panics when asynchronously trying to calculate hashes.
What did you expect to see?
I expecting to see a working async hash generation using .Reset() function before calling .Sum() or explanation why it is not working :)
The text was updated successfully, but these errors were encountered: