Skip to content

Commit 2481792

Browse files
committed
remove transaction stuff
1 parent de34b1b commit 2481792

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

packages/database/src/core/Repo.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -466,11 +466,7 @@ export function repoGetValue(repo: Repo, query: QueryContext): Promise<Node> {
466466
query._path,
467467
node
468468
);
469-
let affectedPath = query._path;
470-
if (events.length > 0) {
471-
affectedPath = repoRerunTransactions(repo, query._path);
472-
}
473-
eventQueueRaiseEventsAtPath(repo.eventQueue_, affectedPath, events);
469+
eventQueueRaiseEventsAtPath(repo.eventQueue_, query._path, events);
474470
return Promise.resolve(node);
475471
},
476472
err => {

0 commit comments

Comments
 (0)