Skip to content

Commit

Permalink
Merge pull request #33 from rte-france/32_java_options
Browse files Browse the repository at this point in the history
see #32: updated Java options to cope with some default values of Xms…
  • Loading branch information
picaultj authored Oct 13, 2020
2 parents cd9949f + fbecbfc commit 0c17e70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/startValidationDaemon.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ set VALIDATOR_OUTPUTS=reports
set VALIDATOR_HOME=.
set VALIDATOR_CONFIG=config
chcp 65001
java -Xms1g -XX:-UseGCOverheadLimit -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.CGMESValidatorDaemon
java -Xms4g -XX:-UseGCOverheadLimit -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.CGMESValidatorDaemon
PAUSE
2 changes: 1 addition & 1 deletion scripts/startValidationDaemon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export VALIDATOR_INPUTS=inputs
export VALIDATOR_OUTPUTS=reports
export VALIDATOR_HOME=.
export VALIDATOR_CONFIG=config
java -Xms1g -XX:-UseGCOverheadLimit -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.CGMESValidatorDaemon
java -Xms4g -XX:-UseGCOverheadLimit -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.CGMESValidatorDaemon
2 changes: 1 addition & 1 deletion scripts/validate.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ set VALIDATOR_OUTPUTS=reports
set VALIDATOR_HOME=.
set VALIDATOR_CONFIG=config
chcp 65001
java -Xms1g -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.OCLEvaluator
java -Xms4g -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.OCLEvaluator
PAUSE

2 changes: 1 addition & 1 deletion scripts/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export VALIDATOR_INPUTS=inputs
export VALIDATOR_OUTPUTS=reports
export VALIDATOR_HOME=.
export VALIDATOR_CONFIG=config
java -Xms1g -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.OCLEvaluator
java -Xms4g -cp target/ocl_validator-3.0-jar-with-all-dependencies.jar ocl.OCLEvaluator

0 comments on commit 0c17e70

Please sign in to comment.