Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note to indicate why priority queue callbacks may be undefined #28337

Merged
merged 6 commits into from
Feb 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/priority-queue/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ export const createQueue = () => {
const callback = /** @type {WPPriorityQueueCallback} */ ( elementsMap.get(
nextElement
) );
// If errors with undefined callbacks are encountered double check that all of your useSelect calls
// have all dependecies set correctly in second parameter. Missing dependencies can cause unexpected
// loops and race conditions in the queue.
callback();
elementsMap.delete( nextElement );
} while ( hasTimeRemaining() );
Expand Down