method

allow_concurrency?

rails latest stable - Class: Rails::Application::DefaultMiddlewareStack

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.2.9) is shown here.

allow_concurrency?()
private

No documentation available.

# File railties/lib/rails/application/default_middleware_stack.rb, line 68
        def allow_concurrency?
          if config.allow_concurrency.nil?
            config.cache_classes && config.eager_load
          else
            config.allow_concurrency
          end
        end