We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b288aa1 commit d3c8d7fCopy full SHA for d3c8d7f
.changeset/cuddly-news-carry.md
@@ -0,0 +1,5 @@
1
+---
2
+'@powersync/diagnostics-app': patch
3
4
+
5
+Fix handling of partial checkpoints
tools/diagnostics-app/src/library/powersync/RecordingStorageAdapter.ts
@@ -41,8 +41,9 @@ export class RecordingStorageAdapter extends SqliteBucketStorage {
41
});
42
}
43
44
- async syncLocalDatabase(checkpoint: Checkpoint) {
45
- const r = await super.syncLocalDatabase(checkpoint);
+ async syncLocalDatabase(checkpoint: Checkpoint, priority?: number) {
+ const r = await super.syncLocalDatabase(checkpoint, priority);
46
47
// Refresh schema asynchronously, to allow us to better measure
48
// performance of initial sync.
49
setTimeout(() => {
0 commit comments