From 8be441f052ee9c375993359f7642d3599ef3f6aa Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Wed, 27 Jan 2016 20:43:44 +0000 Subject: doc update for ClientShutdown exceptions class State explicitly applications should not rely on it, and instead rescue the generic EOFError exception. This class will stick around because there may inevitably be things which rely on it, but we should not encourage it, either. --- lib/unicorn.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/unicorn.rb b/lib/unicorn.rb index bb66b61..f122563 100644 --- a/lib/unicorn.rb +++ b/lib/unicorn.rb @@ -25,7 +25,9 @@ module Unicorn # application dispatch. This is always raised with an empty backtrace # since there is nothing in the application stack that is responsible # for client shutdowns/disconnects. This exception is visible to Rack - # applications unless PrereadInput middleware is loaded. + # applications unless PrereadInput middleware is loaded. This + # is a subclass of the standard EOFError class and applications should + # not rescue it explicitly, but rescue EOFError instead. ClientShutdown = Class.new(EOFError) # :stopdoc: -- cgit v1.2.3-24-ge0c7