Skip to content

Commit

Permalink
fix const
Browse files Browse the repository at this point in the history
  • Loading branch information
weboko committed Aug 31, 2024
1 parent ae14c58 commit 5459f48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk/src/protocols/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ type ReceivedMessageHashes = {

const log = new Logger("sdk:filter");

const DEFAULT_MAX_PINGS = 3;
const DEFAULT_MAX_PINGS = 2;
const DEFAULT_MAX_MISSED_MESSAGES_THRESHOLD = 3;
const DEFAULT_KEEP_ALIVE = 5 * 1000;
const DEFAULT_KEEP_ALIVE = 60 * 1000;

export class SubscriptionManager implements ISubscriptionSDK {
private subscriptionCallbacks: Map<
Expand Down

0 comments on commit 5459f48

Please sign in to comment.