Skip to content

Commit

Permalink
Decreased memory requirement to 1200MB to prevent problems launching on
Browse files Browse the repository at this point in the history
32-bit JVMs.
  • Loading branch information
schuemie committed Oct 12, 2015
1 parent d3e8fab commit e54943b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/org/ohdsi/utilities/RabbitInAHatLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://silentdevelopment.blogspot.com/2010/03/how-to-set-or-increase-xmx-heap-memory.html
*/
public class RabbitInAHatLauncher {
private final static int MIN_HEAP = 1500;
private final static int MIN_HEAP = 1200;

public static void main(String[] args) throws Exception {

Expand Down
2 changes: 1 addition & 1 deletion src/org/ohdsi/utilities/WhiteRabbitLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://silentdevelopment.blogspot.com/2010/03/how-to-set-or-increase-xmx-heap-memory.html
*/
public class WhiteRabbitLauncher {
private final static int MIN_HEAP = 1500;
private final static int MIN_HEAP = 1200;

public static void main(String[] args) throws Exception {

Expand Down

0 comments on commit e54943b

Please sign in to comment.