Re: [appengine-java] Re: Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Toby Reyelts
You need to supply --jvm_flag as a command-line argument to dev_appserver.sh (aka KickStart), not to java.exe. That should work the same way for the ant, dev_appserver/ task. (You can see this in config/user/ant-macros.xml). On Mon, Jun 28, 2010 at 3:51 PM, Mike Dillon mikedillo...@gmail.com

[appengine-java] Re: Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Mike Dillon
Solved! Okay here is a quick format for how to increase your java heap space: If you are running your dev server by running ./dev_appserver.sh war dir then do this: #!/bin/bash # Launches the development AppServer [ -z ${DEBUG} ] || set -x # trace if $DEBUG env. var. is non-zero

[appengine-java] Re: Java Heap Space Error, Correct Increasing Method?

2010-06-28 Thread Mike Dillon
Thanks Toby, I had figured this out before you replied but didn't refresh the page before I posted my solution. I appreciate the help! On Jun 28, 3:59 pm, Toby Reyelts to...@google.com wrote: You need to supply --jvm_flag as a command-line argument to dev_appserver.sh (aka KickStart), not to