mirror of
https://github.com/codex-storage/nim-libp2p.git
synced 2025-01-12 12:04:08 +00:00
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…
x
Reference in New Issue
Block a user