We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abed2e6 commit 1d50c41Copy full SHA for 1d50c41
1 file changed
src/execution/Queue.ts
@@ -25,11 +25,11 @@ export class Queue<T> {
25
try {
26
result = executor(this._push.bind(this), this.stop.bind(this));
27
} catch {
28
- // ignore errors
+ // ignore sync executor errors
29
}
30
if (isPromise(result)) {
31
result.catch(() => {
32
+ /* ignore async executor errors */
33
});
34
35
0 commit comments