Skip to content

Commit

Permalink
[FAB-3087] Fix peer/core.yaml misleading comments
Browse files Browse the repository at this point in the history
The following comments in the core.yaml are misleading and confusing to users.
    # The Address this Peer will bind to for providing services --> This is simply not true
    address: 0.0.0.0:7051
    # Whether the Peer should programmatically determine the address to bind to.
    # This case is useful for docker containers. ---> This is not accurate
    addressAutoDetect: false

I fixed them to reflect the real meaning behind them

Change-Id: I243b639cb390a09352c831a61c9fcc3485560a63
Signed-off-by: Yacov Manevich <yacovm@il.ibm.com>
  • Loading branch information
yacovm committed Apr 11, 2017
1 parent a076bba commit eee9070
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions peer/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ peer:

# The Address this Peer will listen on
listenAddress: 0.0.0.0:7051
# The Address this Peer will bind to for providing services
# Represents the peer's endpoint to peers in its organization
# for other peers, see externalEndpoint
address: 0.0.0.0:7051
# Whether the Peer should programmatically determine the address to bind to.
# Whether the Peer should programmatically determine its address
# This case is useful for docker containers.
addressAutoDetect: false

Expand Down

0 comments on commit eee9070

Please sign in to comment.