Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.29_90.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 0614845..5164014 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Starman

+0.29_90 Thu Dec  1 19:40:52 PST 2011
+        - Changed the way server handles HUP and QUIT signals
+          HUP will just restart all the workers gracefully
+          QUIT will gracefully shutdown workers and the master
+          See `man 1 starman` and look for SIGNALS section.
+
 0.2014  Sun Sep 18 12:43:06 PDT 2011
         - Fixed broken PSGI response headers after the output (cho45)
  • Loading branch information
miyagawa committed Dec 2, 2011
1 parent 4b26bf5 commit 161cdeb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Changes
@@ -1,5 +1,11 @@
Revision history for Perl extension Starman

0.29_90 Thu Dec 1 19:40:52 PST 2011
- Changed the way server handles HUP and QUIT signals
HUP will just restart all the workers gracefully
QUIT will gracefully shutdown workers and the master
See `man 1 starman` and look for SIGNALS section.

0.2014 Sun Sep 18 12:43:06 PDT 2011
- Fixed broken PSGI response headers after the output (cho45)

Expand Down
5 changes: 3 additions & 2 deletions README
Expand Up @@ -23,8 +23,9 @@ DESCRIPTION
worker pool.

Signals
Supports "HUP" for graceful restarts, and "TTIN"/"TTOU" to
dynamically increase or decrease the number of worker processes.
Supports "HUP" for graceful worker restarts, and "TTIN"/"TTOU" to
dynamically increase or decrease the number of worker processes, as
well as "QUIT" to gracefully shutdown the worker processes.

Superdaemon aware
Supports Server::Starter for hot deploy and graceful restarts.
Expand Down
2 changes: 1 addition & 1 deletion lib/Starman.pm
Expand Up @@ -2,7 +2,7 @@ package Starman;

use strict;
use 5.008_001;
our $VERSION = '0.2014';
our $VERSION = '0.29_90';

1;
__END__
Expand Down

0 comments on commit 161cdeb

Please sign in to comment.