Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Increase reconnection dalay and number of attemps
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-stasiak committed May 17, 2024
1 parent 1fbddda commit 616e0db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/src/jellyfish.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export const {
peerMetadataParser: (obj) => peerMetadataSchema.parse(obj),
trackMetadataParser: (obj) => trackMetadataSchema.parse(obj),
reconnect: {
initialDelay: 10, // ms
delay: 200, // ms
maxAttempts: 5,
initialDelay: 500, // ms
delay: 500, // ms
maxAttempts: 10,
}
}, { storage: true });

Expand Down

0 comments on commit 616e0db

Please sign in to comment.