mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-01-19 05:43:51 +01:00
Reduce NodeCallbackStreamManager to 32 to reduce chance of OOM errors on small heap sizes (#5224)
This commit is contained in:
parent
0e2fddcc57
commit
489682312d
@ -20,7 +20,7 @@ import scala.concurrent.{ExecutionContext, Future}
|
||||
case class NodeCallbackStreamManager(
|
||||
callbacks: NodeCallbacks,
|
||||
overflowStrategy: OverflowStrategy = OverflowStrategy.backpressure,
|
||||
maxBufferSize: Int = 1000)(implicit system: ActorSystem)
|
||||
maxBufferSize: Int = 32)(implicit system: ActorSystem)
|
||||
extends NodeCallbacks
|
||||
with StartStopAsync[Unit]
|
||||
with Logging {
|
||||
|
Loading…
Reference in New Issue
Block a user