From 957a1ff17f69711bd7cc9552e26b928cfbff3472 Mon Sep 17 00:00:00 2001 From: Adnan Choudhury Date: Wed, 28 Jun 2017 16:13:18 -0400 Subject: [PATCH] [FAB-5062] Correct Gossip bootstrap setup in byfn Corrects the Gossip bootsrap options for the 2 peers of org2 in the byfn setup. Peer1 should point to Peer0, and peer0 should not point to itself. Change-Id: I23074b7d5abe6ade4a57493808c3092c66086f62 Signed-off-by: Adnan Choudhury --- first-network/base/docker-compose-base.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/first-network/base/docker-compose-base.yaml b/first-network/base/docker-compose-base.yaml index 7a97e718..9aa918e2 100644 --- a/first-network/base/docker-compose-base.yaml +++ b/first-network/base/docker-compose-base.yaml @@ -78,7 +78,6 @@ services: - CORE_PEER_ID=peer0.org2.example.com - CORE_PEER_ADDRESS=peer0.org2.example.com:7051 - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org2.example.com:7051 - - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org2.example.com:7051 - CORE_PEER_LOCALMSPID=Org2MSP volumes: - /var/run/:/host/var/run/ @@ -97,7 +96,7 @@ services: - CORE_PEER_ID=peer1.org2.example.com - CORE_PEER_ADDRESS=peer1.org2.example.com:7051 - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer1.org2.example.com:7051 - - CORE_PEER_GOSSIP_BOOTSTRAP=peer1.org2.example.com:7051 + - CORE_PEER_GOSSIP_BOOTSTRAP=peer0.org2.example.com:7051 - CORE_PEER_LOCALMSPID=Org2MSP volumes: - /var/run/:/host/var/run/