Skip to content

Commit

Permalink
chore: update max failed logs count (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
kat-statsig authored Feb 6, 2025
1 parent 19c36c1 commit e7094d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client-core/src/EventLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const DEFAULT_FLUSH_INTERVAL_MS = 10_000;

const MAX_DEDUPER_KEYS = 1000;
const DEDUPER_WINDOW_DURATION_MS = 600_000;
const MAX_FAILED_LOGS = 1000;
const MAX_FAILED_LOGS = 500;

const QUICK_FLUSH_WINDOW_MS = 200;
const EVENT_LOGGER_MAP: Record<string, EventLogger | undefined> = {};
Expand Down

0 comments on commit e7094d0

Please sign in to comment.