From ee74963235e551bc9cb53c37dcf4fc3a12569925 Mon Sep 17 00:00:00 2001 From: thorgilman Date: Mon, 2 Dec 2019 09:58:56 -0500 Subject: [PATCH] Update node.conf template to remove single quotes (#5652) The single quotes surrounding the jvm arguments in the empty node.conf cause an error when trying to perform initial registration. --- docs/source/deploying-a-node.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/deploying-a-node.rst b/docs/source/deploying-a-node.rst index 2f50b1e958..80470c1c6c 100644 --- a/docs/source/deploying-a-node.rst +++ b/docs/source/deploying-a-node.rst @@ -64,7 +64,7 @@ handling, and ensures the Corda service is run at boot. ] } ] - custom { jvmArgs = [ '-Xmx2048m', '-XX:+UseG1GC' ] } + custom { jvmArgs = [ "-Xmx2048m", "-XX:+UseG1GC" ] } 7. Make the following changes to ``/opt/corda/node.conf``: