You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current limits set in libp2p.ts were set at their current values in order to get the app working for the IPFS Thing demo.
We need to configure saner limits instead of these arbitrarily high values.
identify: {
// these are set because we were seeing a lot of identify and identify push
// stream limits being hit
maxPushOutgoingStreams: 1000,
maxPushIncomingStreams: 1000,
maxInboundStreams: 1000,
maxOutboundStreams: 1000,
},
The current limits set in libp2p.ts were set at their current values in order to get the app working for the IPFS Thing demo.
We need to configure saner limits instead of these arbitrarily high values.
Limits to address
https://github.com/libp2p/universal-connectivity/blob/main/packages/frontend/src/lib/libp2p.ts#L32
https://github.com/libp2p/universal-connectivity/blob/main/packages/frontend/src/lib/libp2p.ts#L70
Documented more in https://hackmd.io/K_MkPfjOTyaLfLME4b25aw
The text was updated successfully, but these errors were encountered: