Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "ERR_HTTP2_PING_FAILED" mean in Chrome error code?

That error message logged to the chrome console from a long-pending request after around 15 minutes.

It looks client-side error because server processing still worked.

I did not find any article related to this error message.

can any buddy let me know how to solve this issue?

like image 993
shunman Avatar asked Dec 23 '19 05:12

shunman


1 Answers

According to the chromium source I think it means that a spdy ping timed out.

...
    {net::ERR_EMPTY_RESPONSE, "http.response.empty"},
    {net::ERR_HTTP2_PING_FAILED, "spdy.ping_failed"},
    {net::ERR_HTTP2_PROTOCOL_ERROR, "spdy.protocol"},
...

Source https://chromium.googlesource.com/chromium/src/+/lkgr/components/domain_reliability/util.cc#48

Chrome sends such pings before and after a request.

Source https://groups.google.com/d/msg/spdy-dev/HFjAbFRd-N0/p-Edt-lneGsJ

like image 161
SuperSandro2000 Avatar answered Nov 03 '22 08:11

SuperSandro2000