diff options
author | Nicolas Cavigneaux <nicolas@synbioz.com> | 2014-10-06 11:07:29 +0200 |
---|---|---|
committer | Nicolas Cavigneaux <nico@bounga.org> | 2014-10-08 09:35:15 +0200 |
commit | 094a7cece000ba74ed010993163183476492c500 (patch) | |
tree | cbf8a78db07876e8f517ffb042bdb458bfa0ef36 | |
parent | 0bd1a4e05c6cb6d9028a8c69f769cf21d70516f4 (diff) | |
download | rails-094a7cece000ba74ed010993163183476492c500.tar.gz rails-094a7cece000ba74ed010993163183476492c500.tar.bz2 rails-094a7cece000ba74ed010993163183476492c500.zip |
Warning about middleware not auto-reloading
Add a section in the guide to explain that Rails can't auto-reload
a middleware on code change.
Fix #16806
[ci skip]
-rw-r--r-- | guides/source/rails_on_rack.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md index 01941fa338..8bc2678d8f 100644 --- a/guides/source/rails_on_rack.md +++ b/guides/source/rails_on_rack.md @@ -99,6 +99,10 @@ To find out more about different `rackup` options: $ rackup --help ``` +### Development and auto-reloading + +Middlewares are loaded once and are not monitored for changes. You will have to restart the server for changes to be reflected in the running application. + Action Dispatcher Middleware Stack ---------------------------------- |