Skip to content

Commit bbf41c8

Browse files
authored
chore(composite): increase the join retry limit (#2041)
Use a higher join-retry limit for our composite recording app.
1 parent 21164f1 commit bbf41c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sample-apps/react/egress-composite/src/hooks/useInitializeClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const useJoinCall = ({
6363
]);
6464

6565
const callJoinPromise = deviceSetup
66-
.then(() => call.join())
66+
.then(() => call.join({ maxJoinRetries: 100 }))
6767
.catch((err) => console.error('Error joining call', err));
6868
return () => {
6969
callJoinPromise

0 commit comments

Comments
 (0)