chore: test waku.test fleet

This commit is contained in:
darshankabariya 2026-02-24 13:17:11 +05:30
parent 1ae1fbc39a
commit 3c693fa709
No known key found for this signature in database
GPG Key ID: 9A92CCD9899F0D22
2 changed files with 4 additions and 4 deletions

2
vendor/nim-libp2p vendored

@ -1 +1 @@
Subproject commit 1c5b3c6c41569a456d1fdb7454781c7ef4262a1a
Subproject commit 7c35d5b65abb98c6ad0576827632f6fb8696c692

View File

@ -43,7 +43,7 @@ proc respond(
try:
await conn.writeLP(rpc.encode().buffer)
except CatchableError as exc:
error "exception when trying to send a respond", error = getCurrentExceptionMsg()
debug "exception when trying to send a respond", error = getCurrentExceptionMsg()
waku_px_errors.inc(labelValues = [exc.msg])
return err(
(
@ -65,7 +65,7 @@ proc respondError(
try:
await conn.writeLP(rpc.encode().buffer)
except CatchableError as exc:
error "exception when trying to send a respond", error = getCurrentExceptionMsg()
debug "exception when trying to send a respond", error = getCurrentExceptionMsg()
waku_px_errors.inc(labelValues = [exc.msg])
return err(
(
@ -128,7 +128,7 @@ proc initProtocolHandler(wpx: WakuPeerExchange) =
try:
buffer = await conn.readLp(DefaultMaxRpcSize.int)
except CatchableError as exc:
error "exception when handling px request", error = getCurrentExceptionMsg()
debug "exception when handling px request", error = getCurrentExceptionMsg()
waku_px_errors.inc(labelValues = [exc.msg])
(