From 8762b78d1b44b50092a8cbfc22e31bf611612a73 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 13 Apr 2009 13:09:05 -0700 Subject: Fix SIGINT/SIGTERM handling (broken in 0.5.0) By reraising SignalException in workers. Since we just rely on default signal handlers for the majority of signals now, ensure those signals actually exit the process. --- lib/unicorn.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/unicorn.rb') diff --git a/lib/unicorn.rb b/lib/unicorn.rb index 4465109..bb4054a 100644 --- a/lib/unicorn.rb +++ b/lib/unicorn.rb @@ -521,8 +521,8 @@ module Unicorn reopen_logs or exit(alive ? 1 : 0) end end - rescue SystemExit => e - exit(e.status) + rescue SignalException, SystemExit => e + raise e rescue Object => e if alive logger.error "Unhandled listen loop exception #{e.inspect}." -- cgit v1.2.3-24-ge0c7