about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-15 15:13:57 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-15 15:29:33 -0800
commit85f56d09ae9d9c2e2a28502312f2f3e5ec655693 (patch)
tree97432255cbca1d9040f9669a59065469d42d3394
parentd3f9ce058c1096fd19d8755a7ca40fd5b83fca1d (diff)
downloadrainbows-85f56d09ae9d9c2e2a28502312f2f3e5ec655693.tar.gz
Client shutdowns/errors when streaming "rack.input" into the
Rack application are quieter now.  Rev and EventMachine workers
now shutdown correctly when the master dies.  Worker processes
now fail gracefully if log reopening fails.  ThreadSpawn and
ThreadPool models now load Unicorn classes in a thread-safe way.

There's also an experimental RevThreadSpawn concurrency
model which may be heavily reworked in the future...

Eric Wong (30):
      Threaded models have trouble with late loading under 1.9
      cleanup worker heartbeat and master deathwatch
      tests: allow use of alternative sha1 implementations
      rev/event_machine: simplify keepalive checking a bit
      tests: sha1.ru now handles empty bodies
      rev: split out further into separate files for reuse
      rev: DeferredResponse is independent of parser state
      remove unnecessary class variable
      ev_core: cleanup handling of APP constant
      rev: DeferredResponse: always attach to main loop
      initial cut of the RevThreadSpawn model
      rev_thread_spawn/revactor: fix TeeInput for short reads
      rev_thread_spawn: make 1.9 TeeInput performance tolerable
      tests: add executable permissions to t0102
      tests: extra check to avoid race in reopen logs test
      rev_thread_spawn: 16K chunked reads work better
      tests: ensure proper accounting of worker_connections
      tests: heartbeat-timeout: simplify and avoid possible race
      tests: ensure we process "START" from FIFO when starting
      http_response: don't "rescue nil" for body.close
      cleanup error handling pieces
      tests: more stringent tests for error handling
      revactor/tee_input: unnecessary error handling
      gracefully exit workers if reopening logs fails
      revactor/tee_input: raise ClientDisconnect on EOFError
      bump versions since we depend on Unicorn::ClientShutdown
      revactor/tee_input: share error handling with superclass
      RevThreadSpawn is still experimental
      Revert "Threaded models have trouble with late loading under 1.9"
      Rakefile: add raa_update task
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--GNUmakefile2
-rw-r--r--lib/rainbows/const.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 9ae4282..6eb2f70 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.5.0.GIT
+DEF_VER=v0.6.0.GIT
 
 LF='
 '
diff --git a/GNUmakefile b/GNUmakefile
index 6f164c5..5628c24 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -64,7 +64,7 @@ NEWS: GIT-VERSION-FILE
         $(rake) -s news_rdoc > $@+
         mv $@+ $@
 
-SINCE = 0.4.0
+SINCE = 0.5.0
 ChangeLog: log_range = $(shell test -n "$(SINCE)" && echo v$(SINCE)..)
 ChangeLog: GIT-VERSION-FILE
         @echo "ChangeLog from $(GIT_URL) ($(SINCE)..$(GIT_VERSION))" > $@+
diff --git a/lib/rainbows/const.rb b/lib/rainbows/const.rb
index bd3861d..a09b4e9 100644
--- a/lib/rainbows/const.rb
+++ b/lib/rainbows/const.rb
@@ -3,7 +3,7 @@
 module Rainbows
 
   module Const
-    RAINBOWS_VERSION = '0.6.0pre'
+    RAINBOWS_VERSION = '0.6.0'
 
     include Unicorn::Const