From 790b67c9235852b74c4fc8591657cece9ad5b5fc Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Mon, 17 Aug 2020 12:45:54 +0200 Subject: [PATCH] work around bufferstream deadlock (#332) mplex backpressure handling deadlocks with something --- libp2p/stream/bufferstream.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libp2p/stream/bufferstream.nim b/libp2p/stream/bufferstream.nim index 6fcaab5..a0fb921 100644 --- a/libp2p/stream/bufferstream.nim +++ b/libp2p/stream/bufferstream.nim @@ -43,7 +43,7 @@ logScope: topics = "bufferstream" const - DefaultBufferSize* = 1024 + DefaultBufferSize* = 102400 const BufferStreamTrackerName* = "libp2p.bufferstream"