Skip to content

Commit

Permalink
update for release
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Sep 6, 2022
1 parent f723f5c commit f1ff812
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default Route.extend({
this.store.push(updatePayload);

performance.mark('start-materialize-records');
const peekedParents = this.store.peekAll('parent').slice();
this.store.peekAll('child').slice();
const peekedParents = this.store.peekAll('parent').toArray();
this.store.peekAll('child').toArray();

performance.mark('start-materialize-relationships');
let seen = new Set();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default Route.extend({
this.store.push(initialPayload);

performance.mark('start-initial-materialize-records');
let peekedParents = this.store.peekAll('parent').slice();
this.store.peekAll('child').slice();
let peekedParents = this.store.peekAll('parent').toArray();
this.store.peekAll('child').toArray();

performance.mark('start-initial-materialize-relationships');
let seen = new Set();
Expand All @@ -25,8 +25,8 @@ export default Route.extend({
this.store.push(updatePayload);

performance.mark('start-materialize-all-records');
peekedParents = this.store.peekAll('parent').slice();
this.store.peekAll('child').slice();
peekedParents = this.store.peekAll('parent').toArray();
this.store.peekAll('child').toArray();

performance.mark('start-materialize-all-relationships');
seen = new Set();
Expand Down

0 comments on commit f1ff812

Please sign in to comment.