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
golang/go#25245 makes the very good case that handlers shouldn't log panics in the net/http package. I had added panics to the handlers in this package because I was copying net/http's API and behavior for consistency, but they are correct, that makes no sense. So remove it.
The text was updated successfully, but these errors were encountered:
golang/go#25245 makes the very good case that handlers shouldn't log panics in the
net/http
package. I had added panics to the handlers in this package because I was copyingnet/http
's API and behavior for consistency, but they are correct, that makes no sense. So remove it.The text was updated successfully, but these errors were encountered: