diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index bb9a4dc983..bce0ddeb4b 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -7,6 +7,8 @@ release, see :doc:`upgrade-notes`. Unreleased ========== +* Removed -xmx VM argument from Explorer's Capsule setup. This helps avoiding out of memory errors. + * Shell now kills an ongoing flow when CTRL+C is pressed in the terminal. * ``ServiceHub`` and ``CordaRPCOps`` can now safely be used from multiple threads without incurring in database transaction problems. diff --git a/tools/explorer/capsule/build.gradle b/tools/explorer/capsule/build.gradle index ac4ccd1e0e..7f99cd75f2 100644 --- a/tools/explorer/capsule/build.gradle +++ b/tools/explorer/capsule/build.gradle @@ -40,11 +40,9 @@ task buildExplorerJAR(type: FatCapsule, dependsOn: project(':tools:explorer').co caplets = ['ExplorerCaplet'] // JVM configuration: - // - Constrain to small heap sizes to ease development on low end devices. // - Switch to the G1 GC which is going to be the default in Java 9 and gives low pause times/string dedup. // - // If you change these flags, please also update Driver.kt - jvmArgs = ['-Xmx512m', '-XX:+UseG1GC'] + jvmArgs = ['-XX:+UseG1GC'] } }