HAR file and HTTP2 - httpversion is wrong
|
03-04-2016, 06:29 AM
Post: #2
|
|||
|
|||
RE: HAR file and HTTP2 - httpversion is wrong
I believe the problem is two-fold:
1) First of all chrome incorrectly stores the httpVersion when the value is h2 as "unknown" in the generated har file Here is how the request shows in Chrome's developer tools: However when you export to a har chrome will save as "unknown" $ grep httpVersion chrome+protocol.har |sort|uniq -c|sort 56 "httpVersion": "unknown", 104 "httpVersion": "HTTP/1.1", I verified Firefox exports the httpVersion correctly as "HTTP/2.0" $ grep httpVersion Downloads/firefox+protocol.har |sort|uniq -c|sort 2 "httpVersion": "", 64 "httpVersion": "HTTP/2.0", 74 "httpVersion": "HTTP/1.1", 2) The second issue, and what I think is relevant here is that the har generated by WPT contains the string "me:" (at least for me) as httpVersion disregarding if you selected Chrome or Firefox as the Browser for the test. (03-04-2016 01:22 AM)shmilla Wrote: If you export a HAR file from webpagetest for an HTTP2 site, there seems to be something weird with the response code. Or am I misinterpreting this? |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
HAR file and HTTP2 - httpversion is wrong - shmilla - 03-04-2016, 01:22 AM
RE: HAR file and HTTP2 - httpversion is wrong - jgarza - 03-04-2016 06:29 AM
|
User(s) browsing this thread: 1 Guest(s)