mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
fix race condition when destroying the session
This commit is contained in:
parent
07d76c547f
commit
c0e8df7bbc
1 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue