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

Silent exception #2912

Closed
roman01la opened this issue Jan 22, 2015 · 12 comments
Closed

Silent exception #2912

roman01la opened this issue Jan 22, 2015 · 12 comments

Comments

@roman01la
Copy link
Contributor

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.

@sophiebits
Copy link
Collaborator

try/finally without a catch shouldn't suppress exceptions – are you able to reproduce the error in a standalone jsfiddle?

@roman01la
Copy link
Contributor Author

@spicyj Unfortunately no, I've tried to code similar case, but it works just fine. Looks like you need to run the project.

@sophiebits
Copy link
Collaborator

In my Chrome 40, I see this:

image

The Promise created in your fetch module is swallowing the exception. You'll notice that if you put a breakpoint on the catch on the GitHubAPI.fetchIssues promise, that code is called with the error object corresponding to the this.v() call.

@roman01la
Copy link
Contributor Author

@spicyj Whoa, thanks! But how exactly this exception is being caught in the Promise? I can't get it looking at the call stack.

@sophiebits
Copy link
Collaborator

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.

@danvk
Copy link

danvk commented Mar 3, 2015

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 .done().

My code which triggered .render() looked like this:

fnThatReturnsPromise().then(val => {
  this.setState({val: val});
});

The solution was to add .done():

fnThatReturnsPromise().then(val => {
  this.setState({val: val});
}).done();

This tells Q that you're done with the promise and won't be adding any .fin() error handlers, so it's save to raise the exception.

@przeor
Copy link

przeor commented Jun 15, 2015

@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).

@sophiebits
Copy link
Collaborator

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 .done() call, but other libraries could also catch exceptions.

@przeor
Copy link

przeor commented Jun 15, 2015

@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 ?

@sophiebits
Copy link
Collaborator

Here's a post about the promises issue:

http://blog.taylormcgann.com/2014/08/21/catch-errors-javascript-promise-chains/

@przeor
Copy link

przeor commented Jun 15, 2015

@spicyj thank you very much!!!

sophiebits referenced this issue Jul 30, 2015
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.
@bjnsn
Copy link

bjnsn commented Feb 24, 2017

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants