Skip to content

Commit ea6815f

Browse files
headiuskares
authored andcommitted
avoid regression causing to re-package a RaiseException
introduced at 6984ce2
1 parent 61aa256 commit ea6815f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/org/jruby/ext/openssl/SSLSocket.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,9 @@ private SSLSocket acceptImpl(final ThreadContext context, final boolean blocking
328328
debugStackTrace(runtime, e);
329329
throw newSSLError(runtime, e);
330330
}
331+
catch (RaiseException e) {
332+
throw e;
333+
}
331334
catch (RuntimeException e) {
332335
debugStackTrace(runtime, e);
333336
if ( "Could not generate DH keypair".equals( e.getMessage() ) ) {

0 commit comments

Comments
 (0)