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
Running ListenAndServe() and Close() in 2 separate routines causes the race detector to pick up a race condition, based on the fact that defaultServer has no synchronization protection around it.
Running ListenAndServe() and Close() in 2 separate routines causes the race detector to pick up a race condition, based on the fact that
defaultServer
has no synchronization protection around it.Fixed by #37
Worth noting, this change would make
Close()
block untilListenAndServe
is actually calledThe text was updated successfully, but these errors were encountered: