fix race condition when destroying the session

This commit is contained in:
Marten Seemann 2020-01-04 14:57:42 +07:00
parent 07d76c547f
commit c0e8df7bbc

View file

@ -1022,9 +1022,9 @@ func (s *session) destroy(e error) {
func (s *session) destroyImpl(e error) {
s.closeOnce.Do(func() {
if nerr, ok := e.(net.Error); ok && nerr.Timeout() {
s.logger.Errorf("Destroying session %s: %s", s.connIDManager.Get(), e)
s.logger.Errorf("Destroying session: %s", e)
} else {
s.logger.Errorf("Destroying session %s with error: %s", s.connIDManager.Get(), e)
s.logger.Errorf("Destroying session with error: %s", e)
}
s.closeChan <- closeError{err: e, immediate: true, remote: false}
})