fix: disable prunning for more investigation (#23531)

This commit is contained in:
Alex 2025-11-02 15:54:03 -06:00 committed by GitHub
parent c76324c611
commit 1036076b0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -132,7 +132,8 @@ class SyncStreamService {
return;
// SyncCompleteV1 is used to signal the completion of the sync process. Cleanup stale assets and signal completion
case SyncEntityType.syncCompleteV1:
return _syncStreamRepository.pruneAssets();
return;
// return _syncStreamRepository.pruneAssets();
// Request to reset the client state. Clear everything related to remote entities
case SyncEntityType.syncResetV1:
return _syncStreamRepository.reset();