You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm attempting to run a Rails app on a Raspberry Pi as a WAR file (packaged via Warbler).
I get this error because I'm using Process.kill throughout my codebase:
file:/tmp/jruby6309588954101406081extract/gems/gems/jruby-jars-1.7.21/lib/jruby-core-1.7.21.jar!/jruby/kernel/jruby/process_manager.rb:28 warning: executable? does not in this environment and will return a dummy value
Exiting
ERROR: org.jruby.exceptions.RaiseException: (NotImplementedError) kill unsupported or native support failed to load
So what determines whether Process.kill is supported? Given that Raspbian is POSIX, I'd have thought it would just work?
The text was updated successfully, but these errors were encountered:
@lukehorvat it certainly can't hurt, if you've got a small ruby script that spawns and then attempts to kill the child process, that would also help I think
Hi, I'm attempting to run a Rails app on a Raspberry Pi as a WAR file (packaged via Warbler).
I get this error because I'm using
Process.kill
throughout my codebase:So what determines whether
Process.kill
is supported? Given that Raspbian is POSIX, I'd have thought it would just work?The text was updated successfully, but these errors were encountered: