[Catalyst-commits] r10846 - Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Sat Jul 11 02:24:02 GMT 2009


Author: dhoss
Date: 2009-07-11 02:24:02 +0000 (Sat, 11 Jul 2009)
New Revision: 10846

Modified:
   Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm
Log:
fixed follow_symlinks option in restarter code


Modified: Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm
===================================================================
--- Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm	2009-07-11 02:21:41 UTC (rev 10845)
+++ Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm	2009-07-11 02:24:02 UTC (rev 10846)
@@ -160,8 +160,7 @@
         my $subclass = Catalyst::Restarter->pick_subclass;
 
         my %args;
-        $args{follow_symlinks} = 1
-            if $self->follow_symlinks;
+        $args{follow_symlinks} = $self->follow_symlinks;
         $args{directories}     = $self->restart_directory;
         $args{sleep_interval}  = $self->restart_delay;
         $args{filter} = qr/$self->restart_regex/;




More information about the Catalyst-commits mailing list