Temporarily increase notifications buffer size (#5644)

* Temporarily increase notifications buffer size

* Add a 511.0 bucket
This commit is contained in:
Pierre Krieger
2020-04-15 23:27:33 +02:00
committed by GitHub
parent 1c7a3fe7d5
commit efde6056f6
2 changed files with 2 additions and 2 deletions
@@ -44,7 +44,7 @@ use unsigned_varint::codec::UviBytes;
/// Maximum allowed size of the two handshake messages, in bytes.
const MAX_HANDSHAKE_SIZE: usize = 1024;
/// Maximum number of buffered messages before we refuse to accept more.
const MAX_PENDING_MESSAGES: usize = 256;
const MAX_PENDING_MESSAGES: usize = 512;
/// Upgrade that accepts a substream, sends back a status message, then becomes a unidirectional
/// stream of messages.