We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Including ActiveMessaging in a Rails application will trigger ActiveMessaging.load_activemessage which in turn requires activemessage/threaded_poller.
This means that every time the Rails environment is loaded, it loads celluloid, which prints this method every time the process exits:
Terminating 4 actors... Shutdown completed cleanly
At best, this is an annoyance, at worst, it's spawning 4 useless threads every time the Rails environment is loaded.
Given that the class isn't used unless the application executing the threaded_poller script, it should not be required in that file.
Expect a pull request shortly. :)
The text was updated successfully, but these errors were encountered:
[kookster#25] Only require threaded_poller where necessary
6a6c836
Merge pull request #26 from carbonfive/issues/skip_loading_threaded_p…
27df11d
…oller-25 [#25] Only require threaded_poller where necessary
No branches or pull requests
Including ActiveMessaging in a Rails application will trigger ActiveMessaging.load_activemessage which in turn requires activemessage/threaded_poller.
This means that every time the Rails environment is loaded, it loads celluloid, which prints this method every time the process exits:
At best, this is an annoyance, at worst, it's spawning 4 useless threads every time the Rails environment is loaded.
Given that the class isn't used unless the application executing the threaded_poller script, it should not be required in that file.
Expect a pull request shortly. :)
The text was updated successfully, but these errors were encountered: