about summary refs log tree commit homepage
path: root/lib/unicorn/const.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-06-29 18:49:45 +0000
committerEric Wong <normalperson@yhbt.net>2011-06-29 18:56:47 +0000
commit79c646d69822df542aaabe285eac08cdf4111dc0 (patch)
treebc05230ba2bddab298b251f2f470d25836390aef /lib/unicorn/const.rb
parentcdb9bc905cf8e15e8a7d0900f57409f54a7b80ac (diff)
downloadunicorn-79c646d69822df542aaabe285eac08cdf4111dc0.tar.gz
This release fixes things for users of per-worker "listen"
directives in the after_fork hook.  Thanks to ghazel@gmail.com
for reporting the bug.

The "timeout" configurator directive is now truncated to
0x7ffffffe seconds to prevent overflow when calling
IO.select.
Diffstat (limited to 'lib/unicorn/const.rb')
-rw-r--r--lib/unicorn/const.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index eb85837..a119629 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -8,8 +8,7 @@
 # improve things much compared to constants.
 module Unicorn::Const
 
-  # The current version of Unicorn, currently 4.0.0
-  UNICORN_VERSION = "4.0.0"
+  UNICORN_VERSION = "4.0.1"
 
   # default TCP listen host address (0.0.0.0, all interfaces)
   DEFAULT_HOST = "0.0.0.0"