Skip to content

Commit

Permalink
rename function
Browse files Browse the repository at this point in the history
  • Loading branch information
iartemiev committed Feb 9, 2021
1 parent f87c7b7 commit 697bba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/datastore/src/sync/outbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class MutationEventOutbox {
const head = await this.peek(storage);

if (record) {
await this.reconcileOutboxOnDequeue(storage, record);
await this.syncOutboxVersionsOnDequeue(storage, record);
}

await storage.delete(head);
Expand Down Expand Up @@ -139,7 +139,7 @@ class MutationEventOutbox {
return result;
}

private async reconcileOutboxOnDequeue(
private async syncOutboxVersionsOnDequeue(
storage: StorageClass,
record: PersistentModel
): Promise<void> {
Expand Down

0 comments on commit 697bba0

Please sign in to comment.