From ec93408d24680f38b12eb6ebe539b9ec5f441378 Mon Sep 17 00:00:00 2001 From: Matthew Nesbit <matthew.nesbit@r3cev.com> Date: Mon, 19 Feb 2018 14:22:31 +0000 Subject: [PATCH] The IRS demo has a clash between web server ports and the regulator node on port 10010. This bumps the ports up by 1 to fix the issue. (#2562) (#2564) --- samples/irs-demo/cordapp/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/irs-demo/cordapp/build.gradle b/samples/irs-demo/cordapp/build.gradle index 00cf16c846..5ee75f4ee2 100644 --- a/samples/irs-demo/cordapp/build.gradle +++ b/samples/irs-demo/cordapp/build.gradle @@ -95,10 +95,10 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) { } node { name "O=Regulator,L=Moscow,C=RU" - p2pPort 10010 + p2pPort 10011 rpcSettings { - port 10009 - adminPort 10029 + port 10012 + adminPort 10032 } cordapps = ["${project.group}:finance:$corda_release_version"] cordapps = ["${project(":finance").group}:finance:$corda_release_version"]