Re: [whatwg/fetch] Request body streams that cannot be retried (#538)

So removing `OPTIONS` and `TRACE` from `IsMethodSafe`,  Chromium does 0RTT only for GET/HEAD:
``` cpp
bool HttpUtil::IsMethodSafe(base::StringPiece method) {
  return method == "GET" || method == "HEAD";
}
```
Should we spec it only for `fetch()` or widely HTTP?  I prefer only `fetch()` if we can easily distinguish it in `HttpNetworkTransaction` so far because of discussion/group scope(here!) instead of larger HTTP WG.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/538#issuecomment-554125227

Received on Thursday, 14 November 2019 23:05:34 UTC