-
Notifications
You must be signed in to change notification settings - Fork 48.1k
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
Silent exception #2912
Comments
try/finally without a catch shouldn't suppress exceptions – are you able to reproduce the error in a standalone jsfiddle? |
@spicyj Unfortunately no, I've tried to code similar case, but it works just fine. Looks like you need to run the project. |
@spicyj Whoa, thanks! But how exactly this exception is being caught in the Promise? I can't get it looking at the call stack. |
As I understand it, the native implementation of promises turns exceptions into promise rejections automatically – you can't see the code in the call stack since it's not written in JS. |
In case it's helpful to anyone... I also ran into this problem and it was also a bug in my code relating to promises. At least with Q, exceptions are swallowed up until you call My code which triggered fnThatReturnsPromise().then(val => {
this.setState({val: val});
}); The solution was to add fnThatReturnsPromise().then(val => {
this.setState({val: val});
}).done(); This tells Q that you're done with the promise and won't be adding any |
@spicyj @roman01la I am just curious if you have the same problem (or you know the solution) with the silent exceptions in reactjs: I have a hard time with silent breaking my react time while debugging. I understand that it's useful that when my app is on production to not throw exceptions. I am talking about a situation when my app's component will break silently if the JSON endpoint change (just example). Is there any way to turn it off (the silent breaking the reactapp)? It would save a lot of time for many people (I believe that more reactjs devs have similar problem). |
I'll repeat myself again: React does not eat your exceptions. If some part of your code is throwing an exception but it's not bubbling to the top level, something (not React) is catching them. Promises do this by default and are a common cause if you don't terminate every promise chain with a |
@spicyj thanks for your patience. Do you know any good blog post/more reference of cases how someone has handled this kind of unwanted behavior ? |
Here's a post about the promises issue: http://blog.taylormcgann.com/2014/08/21/catch-errors-javascript-promise-chains/ |
@spicyj thank you very much!!! |
Rethrowing errors makes debugging harder. This makes it so that an exception in a render method can be caught using the purple stop sign (or the blue one, of course) in Chrome.
It seems that the current versions of promises don't require done as @spicyj was noting above - see: http://stackoverflow.com/questions/26667598/will-javascript-es6-promise-support-done-api |
It turned out that anything which might go wrong will not be caught in this component. I've dropped two undefined function calls on a separate branch, so everyone can try to reproduce this.
Fetch issue-1 branch and run
npm install -g webpack && npm install && webpack
to build the project.Quick debugging showed there are number of
try...finally
blocks and so exception is not being caught.This issue might relate, also I noticed a bunch of similar ones without code example, so this might help.
The text was updated successfully, but these errors were encountered: