-
-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
Hi! I have a problem with the retry and concurrency operators working together. I use debounce in input to make a request, but sometimes we log errors due to an abortion request.
I found a solution, but there was a problem with it too: errorType does not contain the type "ABORT".
concurrency(query, {
strategy: "TAKE_LATEST",
});
retry(query, {
times: 3,
delay: 100,
filter: ({ error }) => error.errorType !== "ABORT", // ts error here
otherwise,
});Metadata
Metadata
Assignees
Labels
No labels