Skip to content

Commit f1cfb4f

Browse files
committedJan 7, 2012
More starman command line fixes.
1 parent 6e8d53a commit f1cfb4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎wre/lib/WRE/Starman.pm

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,11 @@ sub start {
118118
. " --status=" . $config->getRoot("var/run/starman.status")
119119
. " --port=" . $config->get("starman/port")
120120
. " starman" #Beginning of the starman specific configurations
121-
. " --preload=" . $config->get("webgui/root") . "/app.psgi"
121+
. " --preload-app"
122122
. " --access-log=" . $config->getRoot("var/logs/starman.log")
123123
. " --error-log=" . $config->getRoot("var/logs/starman_error.log")
124124
. " --workers=" . $config->get("starman/workers")
125+
. $config->get("webgui/root") . "/app.psgi"
125126
;
126127
`$cmd`; # catch command line output
127128
while ($count++ < 10 && !$success) {

0 commit comments

Comments
 (0)
Please sign in to comment.