This allows us to pass --max_server and similar options to raise the number of workers from the default (5).
8 lines
119 B
Perl
8 lines
119 B
Perl
package Hydra::Script::Server;
|
|
use Moose;
|
|
use namespace::autoclean;
|
|
|
|
extends 'CatalystX::Script::Server::Starman';
|
|
|
|
1;
|