We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfed57f commit ef74c95Copy full SHA for ef74c95
1 file changed
http2/server.go
@@ -1069,6 +1069,9 @@ func (sc *serverConn) serve(conf http2Config) {
1069
func (sc *serverConn) handlePingTimer(lastFrameReadTime time.Time) {
1070
if sc.pingSent {
1071
sc.logf("timeout waiting for PING response")
1072
+ if f := sc.countErrorFunc; f != nil {
1073
+ f("conn_close_lost_ping")
1074
+ }
1075
sc.conn.Close()
1076
return
1077
}
0 commit comments