You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm making some HTTP requests with large-ish (~5k) headers. Neither http1 nor http2 worked until I set client-header-buffer-size: 16k in the ConfigMap, and then http1 started working. http2 is still a problem though, I'm getting this:
Would it be appropriate to have the client-header-buffer-size ConfigMap parameter also control the http2_max_field_size parameter, or would it be better to have a separate directive entirely? It seems to me like you'd always want those two parameters to have the same value. I can open a PR for this no problem, just want to make sure I'm doing the right thing first.
The text was updated successfully, but these errors were encountered:
iameli
changed the title
[0.9.0-beta.2] client-header-buffer-size and such are ignored in http2
[0.9.0-beta.2] client-header-buffer-size doesn't help with http2
Mar 6, 2017
I'm making some HTTP requests with large-ish (~5k) headers. Neither http1 nor http2 worked until I set
client-header-buffer-size: 16k
in the ConfigMap, and then http1 started working. http2 is still a problem though, I'm getting this:Looks like
http2_max_field_size
defaults to 4k, just likeclient_header_buffer_size
.Would it be appropriate to have the
client-header-buffer-size
ConfigMap parameter also control thehttp2_max_field_size
parameter, or would it be better to have a separate directive entirely? It seems to me like you'd always want those two parameters to have the same value. I can open a PR for this no problem, just want to make sure I'm doing the right thing first.The text was updated successfully, but these errors were encountered: