--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/11d36d01-4dbe-4791-857d-d282912df3b0%40chromium.org.
bcc: chromium-devPlease see the previous message from NickTo re-iterate:There are 8 reasons that error might have happened (search for ERR_HTTP2_PROTOCOL_ERROR on that page)If you want to know specifically which, capture a NetLog. The resulting log file will have a textual explanation of what triggered the protocol error.We expect this is a server side issue.I can help you extract the information if you provide me with a NetLog.
On Fri, Oct 25, 2019 at 8:58 AM Madhur Bhardwaj <madhur....@gmail.com> wrote:
Hi,--I'm also facing similar issue on chrome, our angular 6 app run successfully but we face this "err_http2_protocol_error" issue intermittently. We observed when this error occurred calls to our APIs are also failed.can someone please help me to resolve this.Madhur
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromi...@chromium.org.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/c984bc90-37fc-4d06-b51c-db9bcb4769a8%40chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/c984bc90-37fc-4d06-b51c-db9bcb4769a8%40chromium.org.
Hi, server responds with 200 here is the NetLog
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/e0d3f6fb-1c83-461d-a871-f7118bb64e7c%40chromium.org.
Hi,I just faced the error net::ERR_HTTP2_PROTOCOL_ERROR 200 recently. I suspect something wrong with the download stream. The server returns 200 Status code but the request still failed. The server is in a good state, not under high load.Attaching the log (compressed because the filesize is ~25MB). Failed requests are random. Path of some failed requests in my case are:/irm/rest/v1.14/ddr-export-configs/irm/rest/v1.14/ddr-export-configs/irm/rest/v1.14/proxy-sources/irm/rest/v1.14/target-apps
...Any help/hint about what caused the error is appreciated.Regards,Vu
Hi Nick,
Thanks for your quick reply! Though, I don't quite get how's it a server issue.Per my understanding, RTS_SREAM is used by client (browser) to abort request. When server receives RTS_STREAM, it will stop sending the data, and so stopping the download for the full response body.The RST_STREAM frame (type=0x3) allows for immediate termination of a stream. RST_STREAM is sent to request cancellation of a stream or to indicate that an error condition has occurred.Perhaps some other error actually occurred here with the request?
Regards,Vu Lam
--Regards,
Vu Lam
The RST_STREAM frame (type=0x3) allows for immediate termination of a stream. RST_STREAM is sent to request cancellation of a stream or to indicate that an error condition has occurred.