1
Fork 0

Don't attempt to replace empty connection in disk writer.

This commit is contained in:
Juliusz Chroboczek 2021-02-04 22:01:41 +01:00
parent b4240c4505
commit c72cbe8f27
1 changed files with 8 additions and 6 deletions

View File

@ -105,12 +105,14 @@ func (client *Client) PushConn(g *group.Group, id string, up conn.Up, tracks []c
return errors.New("disk client is closed")
}
if replace != "" {
rp := client.down[replace]
if rp != nil {
rp.Close()
delete(client.down, replace)
} else {
log.Printf("Replacing unknown connection")
log.Printf("Disk writer: replacing unknown connection")
}
}
old := client.down[id]