aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/rails_on_rack.md
diff options
context:
space:
mode:
authorwillnet <netwillnet@gmail.com>2016-05-01 11:23:28 +0900
committerJeremy Daer <jeremydaer@gmail.com>2016-04-30 19:39:38 -0700
commit0725f289e1bf70e1874de5fa7ed3312b410085f2 (patch)
treed0e6ded48074d2b46691595abb34b19ab7c93f27 /guides/source/rails_on_rack.md
parenta678c47f6d31977e2a91cc198f115c803f0fc8e1 (diff)
downloadrails-0725f289e1bf70e1874de5fa7ed3312b410085f2.tar.gz
rails-0725f289e1bf70e1874de5fa7ed3312b410085f2.tar.bz2
rails-0725f289e1bf70e1874de5fa7ed3312b410085f2.zip
Replace ActionDispatch::LoadInterlock with ActionDispatch::Executor in guides [ci skip]
Guides should be updated because ActionDispatch::LoadInterlock was replaced with ActionDispatch::Executor at #23807.
Diffstat (limited to 'guides/source/rails_on_rack.md')
-rw-r--r--guides/source/rails_on_rack.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md
index b712965b7f..d67702f52e 100644
--- a/guides/source/rails_on_rack.md
+++ b/guides/source/rails_on_rack.md
@@ -104,7 +104,7 @@ For a freshly generated Rails application, this might produce something like:
```ruby
use Rack::Sendfile
use ActionDispatch::Static
-use ActionDispatch::LoadInterlock
+use ActionDispatch::Executor
use #<ActiveSupport::Cache::Strategy::LocalCache::Middleware:0x000000029a0838>
use Rack::Runtime
use Rack::MethodOverride
@@ -219,7 +219,7 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol
* Sets `env["rack.multithread"]` flag to `false` and wraps the application within a Mutex.
-**`ActionDispatch::LoadInterlock`**
+**`ActionDispatch::Executor`**
* Used for thread safe code reloading during development.