Skip to content

Commit

Permalink
sdk: make throwOnFailedSync default to false in UserMap
Browse files Browse the repository at this point in the history
  • Loading branch information
crispheaney committed Nov 25, 2024
1 parent c30e173 commit 9462dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/userMap/userMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class UserMap implements UserMapInterface {
type: 'default',
};

this.throwOnFailedSync = config.throwOnFailedSync ?? true;
this.throwOnFailedSync = config.throwOnFailedSync ?? false;
}

public async subscribe() {
Expand Down

0 comments on commit 9462dcd

Please sign in to comment.