mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-23 22:56:52 +01:00
increase buffer size of dataMessageStream to 10000 (#4646)
This commit is contained in:
parent
e5545cb3b9
commit
068187c93d
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ case class PeerManager(
|
|||
}
|
||||
|
||||
private val dataMessageStreamSource = Source
|
||||
.queue[StreamDataMessageWrapper](1000,
|
||||
.queue[StreamDataMessageWrapper](10000,
|
||||
overflowStrategy = OverflowStrategy.fail)
|
||||
.mapAsync(1) {
|
||||
case msg @ DataMessageWrapper(payload, peerMsgSender, peer) =>
|
||||
|
|
Loading…
Add table
Reference in a new issue