[Catalyst-commits] r12554 - in Catalyst-Runtime/5.80/trunk: . lib/Catalyst/Script

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Sat Jan 9 15:37:00 GMT 2010


Author: t0m
Date: 2010-01-09 15:37:00 +0000 (Sat, 09 Jan 2010)
New Revision: 12554

Modified:
   Catalyst-Runtime/5.80/trunk/Changes
   Catalyst-Runtime/5.80/trunk/lib/Catalyst/Script/FastCGI.pm
Log:
Don't screw over people using --detach, <sigh>

Modified: Catalyst-Runtime/5.80/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.80/trunk/Changes	2010-01-09 14:43:06 UTC (rev 12553)
+++ Catalyst-Runtime/5.80/trunk/Changes	2010-01-09 15:37:00 UTC (rev 12554)
@@ -6,8 +6,7 @@
      MyApp::View::HTML).
 
   Bug fixes:
-   - Remove the erroneous --detach option from Catalyst::Script::FastCGI
-   - --daemon option to Catalyst::Script::FastCGI is fixed.
+   - --daemon and -d options to Catalyst::Script::FastCGI are fixed.
    - Fix the debug dump for applications which use Catalyst::Plugin::Session
      (RT#52898)
    - Fix regression in the case where mod_rewrite is being used to rewrite

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Script/FastCGI.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Script/FastCGI.pm	2010-01-09 14:43:06 UTC (rev 12553)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Script/FastCGI.pm	2010-01-09 15:37:00 UTC (rev 12554)
@@ -27,7 +27,7 @@
     traits        => [qw(Getopt)],
     isa           => Bool,
     is            => 'ro',
-    cmd_aliases   => 'd',
+    cmd_aliases   => [qw/d detach/], # Eww, detach is here as we fucked it up.. Deliberately not documented
     documentation => 'Daemonize (go into the background)',
 );
 




More information about the Catalyst-commits mailing list