Subject: | process_name is incompatible with Plack |
The process_name attribute is missing from
Plack::Handler::FCGI::Engine::ProcManager. This attribute is required
for the --proc-title functionality to work, as documented in
Plack::Handler::FCGI.
This patch simply adds the missing process_name attribute to
Plack::Handler::FCGI::Engine::ProcManager.
lib/Plack/Handler/FCGI/Engine/ProcManager.pm
15a16,22
Show quoted text
> has 'process_name' => (
> init_arg => 'pm_title',
> is => 'ro',
> isa => 'Str',
> default => sub { 'perl-fcgi' },
> );
>
https://github.com/bobtfish/fcgi-engine/pull/1