-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
Shutdown fails with Ruby 2.0 #62
Comments
Honestly I haven't used Ruby 2.0+ at all. I don't work with Ruby on a daily basis any more so all of my testing is stuck on 1.9.x, unfortunately. I'll try to test it on 2.0 at some point, but I really don't have the spare cycles for the next few weeks at least (big release at work). If you have any spare cycles and think it's an easy fix, then please go ahead and submit a PR. Also, note that the master branch has some nice fixes that haven't been pushed out to rubygems yet. I still need to cut a new release, but in the mean meantime you might want to use the master github repo in your gemfile for now. |
Have you considered finding a new maintainer? I know you've been in the scala community for a while. Perhaps someone more active in Ruby could help? For the record, I'm not interested in expanding my projects or I'd volunteer.
|
Excellent idea: https://twitter.com/ryanlecompte/status/417744677790425089 |
You can't take a mutex from a signal handler in Ruby 2.0+. Here's what Sidekiq does to get around this limitation:
https://github.com/mperham/sidekiq/blob/master/lib/sidekiq/cli.rb#L73
The text was updated successfully, but these errors were encountered: