Make Close() idempotent and close connection if session fails to close
This commit is contained in:
parent
dfc248e5bb
commit
9944612ff5
@ -16,6 +16,7 @@ var _ drpc.Conn = &Conn{}
|
|||||||
type Conn struct {
|
type Conn struct {
|
||||||
conn io.ReadWriteCloser
|
conn io.ReadWriteCloser
|
||||||
sess *yamux.Session
|
sess *yamux.Session
|
||||||
|
isClosed bool
|
||||||
closed chan struct{}
|
closed chan struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,13 +37,18 @@ func New(conn io.ReadWriteCloser) (*Conn, error) {
|
|||||||
// Close closes the multiplexer session
|
// Close closes the multiplexer session
|
||||||
// and the underlying connection.
|
// and the underlying connection.
|
||||||
func (m *Conn) Close() error {
|
func (m *Conn) Close() error {
|
||||||
|
if !m.isClosed {
|
||||||
|
m.isClosed = true
|
||||||
defer close(m.closed)
|
defer close(m.closed)
|
||||||
|
|
||||||
err := m.sess.Close()
|
err := m.sess.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
m.conn.Close()
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return m.conn.Close()
|
return m.conn.Close()
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Closed returns a channel that will be closed
|
// Closed returns a channel that will be closed
|
||||||
|
Loading…
Reference in New Issue
Block a user