Skip to content
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

Replace ActiveSupport::Concurrency::Latch with Concurrent::CountDownLatch from concurrent-ruby. #20866

Merged
merged 1 commit into from
Jul 14, 2015
Merged

Commits on Jul 13, 2015

  1. Replaced ActiveSupport::Concurrency::Latch with concurrent-ruby.

    The concurrent-ruby gem is a toolset containing many concurrency
    utilities. Many of these utilities include runtime-specific
    optimizations when possible. Rather than clutter the Rails codebase with
    concurrency utilities separate from the core task, such tools can be
    superseded by similar tools in the more specialized gem. This commit
    replaces `ActiveSupport::Concurrency::Latch` with
    `Concurrent::CountDownLatch`, which is functionally equivalent.
    jdantonio committed Jul 13, 2015
    Configuration menu
    Copy the full SHA
    284a9ba View commit details
    Browse the repository at this point in the history