Skip to content

Commit

Permalink
Fix command line param for start_server
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Feb 17, 2012
1 parent 219c523 commit 434df47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wre/lib/WRE/Starman.pm
Expand Up @@ -113,7 +113,7 @@ sub start {
my $cmd = "";
#start_server --pid-file=/data/wre/var/run/starman.pid --port=8081 --status=/data/wre/var/run/starman.status -- starman --preload-app /data/WebGUI/app.psgi
$cmd = $config->getRoot("/prereqs/bin/start_server")
. " --pid=" . $config->getRoot("var/run/starman.pid")
. " --pid-file=" . $config->getRoot("var/run/starman.pid")
. " --status=" . $config->getRoot("var/run/starman.status")
. " --port=" . $config->get("starman/port")
. " --" #Beginning of the starman specific configurations
Expand Down

0 comments on commit 434df47

Please sign in to comment.