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
What happened?
On creating a random boundary the following panic occurred:
panic: read /dev/urandom: resource temporarily unavailable
Which unfortunately crashed my program (since it was running in a go-routine off main
thread which had panic recovery).
Is having a panic recovery for all go-routines the Right Thing to do?
What should have happened instead?
Error in this rate case would have been nice. Not sure what causes /dev/urandom to be
unavailable.