Use CatalystX::Script::Server::Starman

This allows us to pass --max_server and similar options
to raise the number of workers from the default (5).
This commit is contained in:
Eelco Dolstra 2011-11-22 16:44:32 +01:00
parent 699699ec34
commit 109e5807c2
2 changed files with 8 additions and 0 deletions

View file

@ -11,6 +11,7 @@ with pkgs;
perlPackages.CatalystViewTT
perlPackages.CatalystViewDownload
perlPackages.CatalystViewJSON
perlPackages.CatalystXScriptServerStarman
perlPackages.XMLSimple
perlPackages.IPCRun
perlPackages.IOCompress

View file

@ -0,0 +1,7 @@
package Hydra::Script::Server;
use Moose;
use namespace::autoclean;
extends 'CatalystX::Script::Server::Starman';
1;