Merge pull request #1512 from lucas-clemente/fix-1510

fix incorrect type assertion in h2quic server
This commit is contained in:
Marten Seemann 2018-09-10 11:17:15 +07:00 committed by GitHub
commit 5e9ac151db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -141,7 +141,7 @@ func (s *Server) handleHeaderStream(session streamCreator) {
// In this case, the session has already logged the error, so we don't
// need to log it again.
errorCode := qerr.InternalError
if qerr, ok := err.(*qerr.QuicError); !ok {
if qerr, ok := err.(*qerr.QuicError); ok {
errorCode = qerr.ErrorCode
s.logger.Errorf("error handling h2 request: %s", err.Error())
}