Skip to content

Commit

Permalink
chore: increase stream limit
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Feb 13, 2025
1 parent a729e75 commit d130bd7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion interop/test/fixtures/get-libp2p.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ export async function getLibp2p (): Promise<Libp2p<{ ping: PingService }>> {
denyDialMultiaddr: async () => false
},
services: {
ping: ping(),
ping: ping({
maxInboundStreams: Infinity,
maxOutboundStreams: Infinity
}),
identify: identify()
}
}
Expand Down

0 comments on commit d130bd7

Please sign in to comment.