We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c46d06 commit 0b88d73Copy full SHA for 0b88d73
1 file changed
packages/mcp/src/sync.ts
@@ -132,11 +132,11 @@ export class SyncManager {
132
}, 5000); // Initial sync after 5 seconds
133
134
// Periodically check for file changes and update the index
135
- console.log('[SYNC-DEBUG] Setting up periodic sync every 2 minutes (120000ms)');
+ console.log('[SYNC-DEBUG] Setting up periodic sync every 24 hours');
136
const syncInterval = setInterval(() => {
137
console.log('[SYNC-DEBUG] Executing scheduled periodic sync');
138
this.handleSyncIndex();
139
- }, 2 * 60 * 1000); // every 2 minutes
+ }, 24 * 60 * 60 * 1000); // every 24 hours
140
141
console.log('[SYNC-DEBUG] Background sync setup complete. Interval ID:', syncInterval);
142
}
0 commit comments