This PR adds the ability to specify the repose heap size for individual tests.
Decreased the default values in ReposeValveLauncher from 1536M and 1024M to 1024M and 512M
To specify the heap size, replace
repose.start() with
repose.start([reposeXmx:"<xmx>",reposeXms:"<xms>"])
where xmx is the max heap size, and xms is the min heap size.
Ex: repose.start([reposeXmx:"1536M",reposeXms:"1024M"])
Pull the values from the params to repose start if they are there, and insert them into the command to start repose.
Right now all the tests still use the default values.
This PR adds the ability to specify the repose heap size for individual tests.
repose.start()
withrepose.start([reposeXmx:"<xmx>",reposeXms:"<xms>"])
where xmx is the max heap size, and xms is the min heap size. Ex:repose.start([reposeXmx:"1536M",reposeXms:"1024M"])
Right now all the tests still use the default values.