Skip to content

Commit 43f24fd

Browse files
cleanup
1 parent cab2bb6 commit 43f24fd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

packages/common/src/client/watched/processors/AbstractQueryProcessor.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,12 @@ export abstract class AbstractQueryProcessor<
9595
this.options.watchOptions = settings;
9696
this.abortController.abort();
9797
this.abortController = new AbortController();
98-
await this.linkQuery({
99-
abortSignal: this.abortController.signal,
100-
settings
101-
});
98+
await this.runWithReporting(() =>
99+
this.linkQuery({
100+
abortSignal: this.abortController.signal,
101+
settings
102+
})
103+
);
102104
}
103105

104106
/**

0 commit comments

Comments
 (0)