Skip to content

Commit 434df47

Browse files
committedFeb 17, 2012
Fix command line param for start_server
1 parent 219c523 commit 434df47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎wre/lib/WRE/Starman.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ sub start {
113113
my $cmd = "";
114114
#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
115115
$cmd = $config->getRoot("/prereqs/bin/start_server")
116-
. " --pid=" . $config->getRoot("var/run/starman.pid")
116+
. " --pid-file=" . $config->getRoot("var/run/starman.pid")
117117
. " --status=" . $config->getRoot("var/run/starman.status")
118118
. " --port=" . $config->get("starman/port")
119119
. " --" #Beginning of the starman specific configurations

0 commit comments

Comments
 (0)
Please sign in to comment.