Skip to content

Commit

Permalink
Increase memory allowance for SIMM demo to pass with external DB on M…
Browse files Browse the repository at this point in the history
…acOS (corda#2303)
  • Loading branch information
m4ksio authored Jan 2, 2018
1 parent 07258c0 commit b8421e5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions samples/simm-valuation-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
notary = [validating : true]
p2pPort 10002
cordapps = ["$project.group:finance:$corda_release_version"]
extraConfig = [
jvmArgs : [ "-Xmx1g"]
]
}
node {
name "O=Bank A,L=London,C=GB"
Expand All @@ -77,6 +80,9 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
rpcPort 10006
cordapps = ["$project.group:finance:$corda_release_version"]
rpcUsers = ext.rpcUsers
extraConfig = [
jvmArgs : [ "-Xmx1g"]
]
}
node {
name "O=Bank B,L=New York,C=US"
Expand All @@ -85,6 +91,9 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
rpcPort 10009
cordapps = ["$project.group:finance:$corda_release_version"]
rpcUsers = ext.rpcUsers
extraConfig = [
jvmArgs : [ "-Xmx1g"]
]
}
node {
name "O=Bank C,L=Tokyo,C=JP"
Expand All @@ -93,6 +102,9 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
rpcPort 10012
cordapps = ["$project.group:finance:$corda_release_version"]
rpcUsers = ext.rpcUsers
extraConfig = [
jvmArgs : [ "-Xmx1g"]
]
}
}

Expand Down

0 comments on commit b8421e5

Please sign in to comment.