Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WFCORE-2181 Server doesn't start on Windows when started from path th… #2327

Merged
merged 1 commit into from Apr 18, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -8,7 +8,7 @@ rem Usage : standalone.bat --debug
rem standalone.bat --debug 9797

@if not "%ECHO%" == "" echo %ECHO%
@if "%OS%" == "Windows_NT" setlocal
setlocal

rem By default debug mode is disable.
set DEBUG_MODE=false
Expand Down Expand Up @@ -234,7 +234,7 @@ if not "%PRESERVE_JAVA_OPTS%" == "true" (
if not exist "%JBOSS_LOG_DIR" > nul 2>&1 (
mkdir "%JBOSS_LOG_DIR%"
)
set "JAVA_OPTS=-verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=3M -Xloggc:%JBOSS_LOG_DIR%\gc.log -XX:-TraceClassUnloading %JAVA_OPTS%"
set JAVA_OPTS=%JAVA_OPTS% -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 -Xloggc:"%JBOSS_LOG_DIR%\gc.log" -XX:GCLogFileSize=3M -XX:-TraceClassUnloading
)
)
)
Expand Down