We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ExceptionThreadingUtility can enter an infinite loop on ill-formed Exceptions like these:
private final Throwable ex1 = new Throwable("Ex1"); private final Throwable ex2 = new Throwable("Ex2", ex1); ex1.initCause(ex2);
The text was updated successfully, but these errors were encountered:
Demonstrates and fixes Issue Netflix#205
25a4731
Merge pull request #206 from mattrjacobs/infinite-loop-exception
55a70d3
Demonstrates and fixes Issue #205
No branches or pull requests
ExceptionThreadingUtility can enter an infinite loop on ill-formed Exceptions like these:
private final Throwable ex1 = new Throwable("Ex1");
private final Throwable ex2 = new Throwable("Ex2", ex1);
ex1.initCause(ex2);
The text was updated successfully, but these errors were encountered: