aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-03-29 13:51:21 +0200
committerLoïc Hoguin <[email protected]>2020-03-29 13:51:21 +0200
commit6ad842a742915066d319f307a0f60cd8df15598b (patch)
treec938e1f0ce21b1dfc1c3cf08852efdab7b27304c /doc
parentf8e94c3315dab3ae1d6dbb4e6785034f79eb04fb (diff)
downloadcowboy-6ad842a742915066d319f307a0f60cd8df15598b.tar.gz
cowboy-6ad842a742915066d319f307a0f60cd8df15598b.tar.bz2
cowboy-6ad842a742915066d319f307a0f60cd8df15598b.zip
Increase the default max_received_frame_rate
Allow 10000 frames every 10 seconds instead of just 1000, as the limit was too quickly reached in some deployments.
Diffstat (limited to 'doc')
-rw-r--r--doc/src/manual/cowboy_http2.asciidoc4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/manual/cowboy_http2.asciidoc b/doc/src/manual/cowboy_http2.asciidoc
index b8a9258..e803f56 100644
--- a/doc/src/manual/cowboy_http2.asciidoc
+++ b/doc/src/manual/cowboy_http2.asciidoc
@@ -161,7 +161,7 @@ following the client's advertised maximum.
Note that actual frame sizes may be lower than the limit when
there is not enough space left in the flow control window.
-max_received_frame_rate ({1000, 10000})::
+max_received_frame_rate ({10000, 10000})::
Maximum frame rate allowed per connection. The rate is expressed
as a tuple `{NumFrames, TimeMs}` indicating how many frames are
@@ -236,6 +236,8 @@ too many `WINDOW_UPDATE` frames.
== Changelog
* *2.8*: The `active_n` option was added.
+* *2.8*: The `max_received_frame_rate` default value has
+ been multiplied by 10 as the default was too low.
* *2.7*: Add the options `connection_window_margin_size`,
`connection_window_update_threshold`,
`max_connection_window_size`, `max_stream_window_size`,