Rename --title to --proc_title as that makes more sense. Remove -t option as it's...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FastCGI.pm
index ec1aee3..67b79be 100644 (file)
@@ -113,7 +113,7 @@ sub run {
     if ($listen) {
         $options->{manager} ||= "FCGI::ProcManager";
         $options->{nproc}   ||= 1;
-        $options->{title}   ||= "perl-fcgi-pm [$class]";
+        $options->{proc_title} ||= "perl-fcgi-pm [$class]";
 
         $self->daemon_fork() if $options->{detach};
 
@@ -124,7 +124,7 @@ sub run {
                 {
                     n_processes => $options->{nproc},
                     pid_fname   => $options->{pidfile},
-                    pm_title => $options->{title},
+                    pm_title => $options->{proc_title},
                 }
             );