-
Bug
-
Resolution: Done
-
Major
-
None
-
None
The "standalone.bat" can handle "JAVA_OPTS" incorrectly. For example, when the escaped pipe "^|" value is specified in "-Dhttp.nonProxyHosts" for configuring multiple hosts.
If updating "standalone.bat" like [TO BE], WildFly can be started.
As there are some references to "JAVA_OPTS" variable in "standalone.bat", please review them to prevent similar events like this ticket.
[AS IS]
253 if not errorlevel == 1 ( 254 set "JAVA_OPTS=%JAVA_OPTS% !TMP_PARAM!" 255 )
[TO BE]
253 if not errorlevel == 1 ( 254 set "!JAVA_OPTS! !TMP_PARAM!" 255 )
- clones
-
JBEAP-22336 [GSS](7.4.z) WFCORE-5546 - "JAVA_OPTS" is not correctly set in standalone.bat
- Closed