We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8620d33 commit 2a0bb7aCopy full SHA for 2a0bb7a
src/main/java/org/jruby/ext/openssl/SSLContext.java
@@ -613,6 +613,12 @@ public RubyHash session_cache_stats(final ThreadContext context) {
613
return RubyHash.newHash(context.runtime);
614
}
615
616
+ @JRubyMethod(name = "security_level=")
617
+ public IRubyObject set_security_level(ThreadContext context, IRubyObject level) {
618
+ warn(context, "WARNING: SSLContext#security_level= has no effect under JRuby");
619
+ return context.nil;
620
+ }
621
+
622
boolean isProtocolForServer() {
623
return protocolForServer;
624
0 commit comments