Fix client close

This commit is contained in:
buptsb 2023-11-09 11:42:28 +08:00 committed by GitHub
parent 17396401d3
commit 4b5fc8d384
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,6 +117,7 @@ func (c *Client) offer(ctx context.Context) (abstractSession, error) {
var sessions []abstractSession
for element := c.connections.Front(); element != nil; {
if element.Value.IsClosed() {
element.Value.Close()
nextElement := element.Next()
c.connections.Remove(element)
element = nextElement