mirror of https://github.com/vacp2p/nim-libp2p.git
Use already existing error for channel push over size
This commit is contained in:
parent
f9cbdc252f
commit
136ac3f550
|
@ -108,8 +108,7 @@ method handle*(m: Mplex) {.async, gcsafe.} =
|
|||
size = data.len
|
||||
|
||||
if data.len > MaxMsgSize:
|
||||
raise newException(CatchableError,
|
||||
"Message size over the limit of 1MiB per message.")
|
||||
raise newLPStreamLimitError();
|
||||
await channel.pushTo(data)
|
||||
of MessageType.CloseIn, MessageType.CloseOut:
|
||||
trace "closing channel", id = id,
|
||||
|
|
Loading…
Reference in New Issue