Skip to content

Commit eee9070

Browse files
committed
[FAB-3087] Fix peer/core.yaml misleading comments
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 <[email protected]>
1 parent a076bba commit eee9070

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

peer/core.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ peer:
5656

5757
# The Address this Peer will listen on
5858
listenAddress: 0.0.0.0:7051
59-
# The Address this Peer will bind to for providing services
59+
# Represents the peer's endpoint to peers in its organization
60+
# for other peers, see externalEndpoint
6061
address: 0.0.0.0:7051
61-
# Whether the Peer should programmatically determine the address to bind to.
62+
# Whether the Peer should programmatically determine its address
6263
# This case is useful for docker containers.
6364
addressAutoDetect: false
6465

0 commit comments

Comments
 (0)