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 e6633be commit bb8724bCopy full SHA for bb8724b
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