-
Notifications
You must be signed in to change notification settings - Fork 0
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
Canceled Error? #41
Comments
@Kayxue, sorry for the late response. Unfortunately, I missed the notification. Thanks for the report! I was able to reproduce the issue. The problem is that all the requests currently share the same abort signal, so the second request is also marked as canceled when the first observable is torn down. I found a way to create an independent signal for each observable. I'll push a fix shortly and make a new release as soon as possible 🙂 |
🎉 This issue has been resolved in version 1.7.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
I wrote the code below and try to get data from an api repeatedly with interval
First time it successfully got the data, but for the second time it printed out "CanceledError: canceled", what does it mean? It won't send request to the api again?
The text was updated successfully, but these errors were encountered: