We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74eb21 commit 3779198Copy full SHA for 3779198
1 file changed
apps/desktop/src-tauri/src/indexing/event_loop.rs
@@ -47,7 +47,7 @@ const MAX_PENDING_RESCANS: usize = 1_000;
47
/// If the number of events processed during replay exceeds this threshold,
48
/// abort replay and fall back to a full scan. Safety net for scenarios where
49
/// FDA was toggled and the app suddenly sees millions of previously hidden paths.
50
-const REPLAY_EVENT_COUNT_LIMIT: u64 = 1_000_000;
+const REPLAY_EVENT_COUNT_LIMIT: u64 = 10_000_000;
51
52
/// Replay events are deduplicated by normalized path in batches of this
53
/// size before processing. Dramatically reduces CPU when the FSEvents
0 commit comments