mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Don't attempt to replace empty connection in disk writer.
This commit is contained in:
parent
b4240c4505
commit
c72cbe8f27
1 changed files with 8 additions and 6 deletions
|
@ -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")
|
return errors.New("disk client is closed")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if replace != "" {
|
||||||
rp := client.down[replace]
|
rp := client.down[replace]
|
||||||
if rp != nil {
|
if rp != nil {
|
||||||
rp.Close()
|
rp.Close()
|
||||||
delete(client.down, replace)
|
delete(client.down, replace)
|
||||||
} else {
|
} else {
|
||||||
log.Printf("Replacing unknown connection")
|
log.Printf("Disk writer: replacing unknown connection")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
old := client.down[id]
|
old := client.down[id]
|
||||||
|
|
Loading…
Reference in a new issue