Uncaught hole
See original GitHub issueWhat is the current behavior?
Delete the last word in input field, the browser will blocking until raven-js throw Uncaught hole
exception in below code:
try {
// Attempt to invoke user-land function
// NOTE: If you are a Sentry user, and you are seeing this stack frame, it
// means Raven caught an error invoking your application code. This is
// expected behavior and NOT indicative of a bug with Raven.js.
return func.apply(this, args);
} catch (e) {
self._ignoreNextOnError();
self.captureException(e, options);
throw e;
}
What is the expected behavior?
Raven.js version: 3.20.1 and Using npm package. browser: chrome OS: MacOS, windows 10 React: 0.14.3 Hosted Sentry by ourselves (8.21.0)
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Uncaught Design Rule Violation: Minimum annular ring on ...
Design rules for minimum annular ring are not obeyed for plated through-hole pads. Steps to reproduce. Make a pad with hole 0.9mm and...
Read more >Uncaught TypeError: Cannot read property 'next' of undefined
The length of moles is 10, you need to iterate over moles from 0 - 9. Currently you're iterating from 0 - 10,...
Read more >Sodium compact: Security hole, maybe google dorking?
Today i saw this error in my php log: [25-Mar-2022 14:07:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core32_Curve25519' ...
Read more >Content hole not allowed in a mark or leaf node spec - Discuss
Whenever I copy a text from ProseMirror, I get this error. Though, the text does get copied, I have no idea what is...
Read more >Read the hole module and write in excel - Forums - IBM Support
This code returns the attribute "identifier", but I have the problem, that this attribute not returned in the right order, but chronical ordered......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I recently encountered this in one of our apps. the cause was a big object, that had a bunch of circular references in it passed to a breadcrumb, and caused the
stringify
to fail, as it simply ran out of memory when trying to stringify such object.I may be able to recreate this in codepen or plunker, but the thing is - I’m not sure if that’s something that can/would be fixed. One interesting way to fix this would be to limit the depth of the object passed in to say
10
, which would, in some cases, prevent it from becoming too large.As we released Release Candidate of our SDK v4, we clean up some of the issues. Please feel free to let me know and I’ll reopen this issue if this will ever happen in the new version. Cheers!