mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
Temporarily increase notifications buffer size (#5644)
* Temporarily increase notifications buffer size * Add a 511.0 bucket
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -937,7 +937,7 @@ impl Metrics {
|
||||
"sub_libp2p_notifications_queues_size",
|
||||
"Total size of all the notification queues"
|
||||
),
|
||||
buckets: vec![0.0, 1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0],
|
||||
buckets: vec![0.0, 1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0, 511.0, 512.0],
|
||||
},
|
||||
&["protocol"]
|
||||
)?, registry)?,
|
||||
|
||||
Reference in New Issue
Block a user