The message payload is empty, making the message invalid. Ensure that a non-empty payload is set on the outgoing message.
Failure to protobuf encode the message. This is not recoverable and needs further investigation.
Could not determine the origin of the fault. Best to check connectivity and try again
The topics passed in the decoders do not match each other, or don't exist at all. Ensure that all the pubsub topics used in the decoders are valid and match each other.
Failure to find a peer with suitable protocols. This may due to a connection issue.
Mitigation can be: retrying after a given time period, display connectivity issue
to user or listening for peer:connected:bootstrap
or peer:connected:peer-exchange
on the connection manager before retrying.
The remote peer did not behave as expected. Mitigation for NO_PEER_AVAILABLE
or DECODE_FAILED
can be used.
Failure to find a stream to the peer. This may be because the connection with the peer is not still alive.
Mitigation can be: retrying after a given time period, or mitigation for NO_PEER_AVAILABLE
can be used.
The remote peer rejected the message. Information provided by the remote peer
is logged. Review message validity, or mitigation for NO_PEER_AVAILABLE
or DECODE_FAILED
can be used.
The protocol request timed out without a response. This may be due to a connection issue. Mitigation can be: retrying after a given time period
Missing credentials info message. nwaku: https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/group_manager/group_manager_base.nim#L186
Membership index missing info message. nwaku: https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/group_manager/group_manager_base.nim#L188
General proof generation error message. nwaku: https://github.com/waku-org/nwaku/blob/c3cb06ac6c03f0f382d3941ea53b330f6a8dd127/waku/waku_rln_relay/group_manager/group_manager_base.nim#L201C19-L201C42
The message size is above the maximum message size allowed on the Waku Network. Compressing the message or using an alternative strategy for large messages is recommended.
The pubsub topic configured on the decoder does not match the pubsub topic setup on the protocol. Ensure that the pubsub topic used for decoder creation is the same as the one used for protocol.
The PubsubTopic passed to the send function is not configured on the Waku node. Please ensure that the PubsubTopic is used when initializing the Waku node.
Failure to protobuf decode the message. May be due to a remote peer issue, ensuring that messages are sent via several peer enable mitigation of this error.