don't send write error in CONNECTION_CLOSE frames

This commit is contained in:
Marten Seemann 2020-07-09 18:09:20 +07:00
parent 953f3472cf
commit 61d8e111b1
2 changed files with 29 additions and 1 deletions

View file

@ -517,7 +517,7 @@ func (s *session) run() error {
go s.cryptoStreamHandler.RunHandshake()
go func() {
if err := s.sendQueue.Run(); err != nil {
s.closeLocal(err)
s.destroyImpl(err)
}
}()