Subject: | small mistake in documentation synopsis |
The documentation shows an example in the synopsis saying
options => {
port => 123,
error_log => '/path/to/error.log',
pid_file => '/path/to/starman.pid'
},
However Server/Control/Starman.pm expects 'pid' instead of 'pid_file' in
line 50-53:
50 sub _build_pid_file {
51 my $self = shift;
52 return $self->options->{pid};
53 }
Kind regards,
Arjan Widlak.