We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
From: http://jira.codehaus.org/browse/JRUBY-5582. Fails on JRuby 1.7.18 but appears to work on JRuby 9000.
when I attempt to install a SecurityManager from JRuby it fails.
if I understand correctly the problem is that while the java proxy is being generated for the
checkPermission call it triggers another checkPermission call ... posted this on the forum bot got no answer http://www.ruby-forum.com/topic/1245322 the failing sample code (including the stack trace) is available here: https://gist.github.com/862023
require 'java' class JRubySecurityManager < java.lang.SecurityManager def checkPermission( perm ) puts perm.inspect end end java.lang.System.setSecurityManager( JRubySecurityManager.new )
The text was updated successfully, but these errors were encountered:
1.7.x is EOL and this will not get fixed. Marking WONTFIX
Sorry, something went wrong.
No branches or pull requests
From: http://jira.codehaus.org/browse/JRUBY-5582. Fails on JRuby 1.7.18 but appears to work on JRuby 9000.
when I attempt to install a SecurityManager from JRuby it fails.
if I understand correctly the problem is that while the java proxy is being generated for the
checkPermission call it triggers another checkPermission call ...
posted this on the forum bot got no answer http://www.ruby-forum.com/topic/1245322
the failing sample code (including the stack trace) is available here: https://gist.github.com/862023
The text was updated successfully, but these errors were encountered: