aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-05-04 11:10:13 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-05-04 11:10:13 +0000
commit6c473eb410a959607ee5f4a5c8597b684f1827c0 (patch)
tree959e0f4d150e38cb35f4e5597cb29e191550bb4b /railties/CHANGELOG
parentac44be3494a846468b6cefa21fa38ff953fc6de9 (diff)
downloadrails-6c473eb410a959607ee5f4a5c8597b684f1827c0.tar.gz
rails-6c473eb410a959607ee5f4a5c8597b684f1827c0.tar.bz2
rails-6c473eb410a959607ee5f4a5c8597b684f1827c0.zip
Made dispatch.fcgi more robust by catching fluke errors and retrying unless its a permanent condition. [Jamis Buck] Allow graceful exits for dispatch.fcgi processes by sending a SIGUSR1. If the process is currently handling a request, the request will be allowed to complete and then will terminate itself. If a request is not being handled, the process is terminated immediately (via #exit). This basically works like restart graceful on Apache. [Jamis Buck]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1284 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 5664206ed0..f98c57459d 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,10 @@
*SVN*
+
+* Allow graceful exits for dispatch.fcgi processes by sending a SIGUSR1. If the process is currently handling a request, the request will be allowed to complete and then will terminate itself. If a request is not being handled, the process is terminated immediately (via #exit). This basically works like restart graceful on Apache. [Jamis Buck]
+
+* Made dispatch.fcgi more robust by catching fluke errors and retrying unless its a permanent condition. [Jamis Buck]
+
* Added console --profile for profiling an IRB session #1154 [bitsweat]
* Changed console_sandbox into console --sandbox #1154 [bitsweat]