Skip to content

Commit

Permalink
avoid regression causing to re-package a RaiseException
Browse files Browse the repository at this point in the history
introduced at 6984ce2
  • Loading branch information
headius authored and kares committed Aug 19, 2015
1 parent 61aa256 commit ea6815f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/jruby/ext/openssl/SSLSocket.java
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,9 @@ private SSLSocket acceptImpl(final ThreadContext context, final boolean blocking
debugStackTrace(runtime, e);
throw newSSLError(runtime, e);
}
catch (RaiseException e) {
throw e;
}
catch (RuntimeException e) {
debugStackTrace(runtime, e);
if ( "Could not generate DH keypair".equals( e.getMessage() ) ) {
Expand Down

0 comments on commit ea6815f

Please sign in to comment.