We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e45037d commit 716c949Copy full SHA for 716c949
ethstats/ethstats.go
@@ -480,7 +480,7 @@ func (s *Service) reportLatency(conn *websocket.Conn) error {
480
// Pong delivered, report the latency
481
case <-time.After(5 * time.Second):
482
// Ping timeout, abort
483
- return errors.New("ping timed out")
+ // return errors.New("ping timed out") //temp-fix
484
}
485
latency := strconv.Itoa(int((time.Since(start) / time.Duration(2)).Nanoseconds() / 1000000))
486
0 commit comments