316976 removed quotes of JAVA_OPTIONS in jetty.sh
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2021 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
6bbaa8feaf
commit
8bc63b4b1e
|
@ -6,6 +6,7 @@ jetty-7.1.5-SNAPSHOT
|
||||||
+ 316597 Removed null check and fixed name in Resource#hrefEncodeURI
|
+ 316597 Removed null check and fixed name in Resource#hrefEncodeURI
|
||||||
+ 316970 jetty.sh fails to find JETTY_HOME in standard directories
|
+ 316970 jetty.sh fails to find JETTY_HOME in standard directories
|
||||||
+ 316973 jetty.sh claims java installation is invalid
|
+ 316973 jetty.sh claims java installation is invalid
|
||||||
|
+ 316976 removed quotes of JAVA_OPTIONS in jetty.sh
|
||||||
+ 317019 Date HTTP header not sent for HTTP/1.0 requests
|
+ 317019 Date HTTP header not sent for HTTP/1.0 requests
|
||||||
+ JETTY-1237 Save local/remote address to be available after close
|
+ JETTY-1237 Save local/remote address to be available after close
|
||||||
|
|
||||||
|
|
|
@ -374,8 +374,8 @@ JETTY_START=$JETTY_HOME/start.jar
|
||||||
START_INI=$(dirname $JETTY_START)/start.ini
|
START_INI=$(dirname $JETTY_START)/start.ini
|
||||||
[ -r "$START_INI" ] || START_INI=""
|
[ -r "$START_INI" ] || START_INI=""
|
||||||
|
|
||||||
RUN_ARGS=("${JAVA_OPTIONS[@]}" -jar "$JETTY_START" $JETTY_ARGS "${CONFIGS[@]}")
|
RUN_ARGS=(${JAVA_OPTIONS[@]} -jar "$JETTY_START" $JETTY_ARGS "${CONFIGS[@]}")
|
||||||
RUN_CMD=("$JAVA" "${RUN_ARGS[@]}")
|
RUN_CMD=("$JAVA" ${RUN_ARGS[@]})
|
||||||
|
|
||||||
#####################################################
|
#####################################################
|
||||||
# Comment these out after you're happy with what
|
# Comment these out after you're happy with what
|
||||||
|
|
Loading…
Reference in New Issue