reduced reservationTTL to 15 mins

This commit is contained in:
Ludwig Lehnert 2025-05-13 12:51:03 +02:00
parent ce79c0150a
commit 39e47fcf3d
Signed by: ludwig
SSH Key Fingerprint: SHA256:4vshH9GJ8TLO1RS2fY6rDDLnq7+KVvSClCY+uEhYYRA

View File

@ -40,8 +40,8 @@ const relay = await createLibp2p({
services: {
identify: identify(),
relay: circuitRelayServer({
reservations: 512,
reservationTTL: 2 * 60 * 60 * 1000,
reservations: 1024,
reservationTTL: 15 * 60 * 1000, // 15 minutes
}),
}
})