mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Make ServerStart variable global
This commit is contained in:
parent
8c063c4f0c
commit
cdae4347a6
2 changed files with 5 additions and 8 deletions
|
@ -10,6 +10,7 @@ import (
|
|||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/deluan/navidrome/consts"
|
||||
"github.com/deluan/navidrome/log"
|
||||
"github.com/deluan/navidrome/model/request"
|
||||
"github.com/google/uuid"
|
||||
|
@ -186,7 +187,7 @@ func (b *broker) listen() {
|
|||
log.Debug("Client added to event broker", "numClients", len(clients), "newClient", c.String())
|
||||
|
||||
// Send a serverStart event to new client
|
||||
c.channel <- b.preparePackage(&ServerStart{serverStart})
|
||||
c.channel <- b.preparePackage(&ServerStart{consts.ServerStart})
|
||||
|
||||
case c := <-b.unsubscribing:
|
||||
// A client has detached and we want to
|
||||
|
@ -200,7 +201,7 @@ func (b *broker) listen() {
|
|||
// Send event to all connected clients
|
||||
for c := range clients {
|
||||
log.Trace("Putting event on client's queue", "client", c.String(), "event", event)
|
||||
// Use non-blocking send. If cannot send, terminate the client's connection
|
||||
// Use non-blocking send. If cannot send, ignore the message
|
||||
select {
|
||||
case c.channel <- event:
|
||||
default:
|
||||
|
@ -214,9 +215,3 @@ func (b *broker) listen() {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
var serverStart time.Time
|
||||
|
||||
func init() {
|
||||
serverStart = time.Now()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue