Maaz Amin

Results 5 comments of Maaz Amin

One thing to consider right now is that the way Cloudflare has implemented this, OkHttp errors out on the 103 request. I believe if you are using it for the...

If anyone wants a solution that ignores 103 heres what I did `if (!(headerBlockLength != 0 && headerBlock[0].value.utf8().equals("103"))) { handler.headers(endStream, streamId, -1, headerBlock) }` I added that to readHeaders function,...

https://github.com/square/okhttp/commit/35f0dd9dbf2ae9ffcecc2b5fc86e11762a29bb4d This is what it looks like all together, I have used this since November and had no issues, if anyone urgently needs to get past this issue I think...

Small note if this is still open, we tested increasing it to whatever chrome uses, and we noticed a slight loss in performamce. We were running ~2k requests/second, we had...

@yschimke I worked to the same solution as you for this bug and have been using it for 2 months without any issues. Also, I dont think the connection should...