this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dont need to log an error if a ping to a client fails (#437)

authored by

Whyrusleeping and committed by
GitHub
cbc83565 49a15727

+1 -1
+1 -1
bgs/bgs.go
··· 544 544 } 545 545 546 546 if err := conn.WriteControl(websocket.PingMessage, []byte{}, time.Now().Add(5*time.Second)); err != nil { 547 - log.Errorf("failed to ping client: %s", err) 547 + log.Warnf("failed to ping client: %s", err) 548 548 cancel() 549 549 return 550 550 }