forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-4751] allow provisioning separate chaincode server
The chaincodeListenAddress property allows chaincode connections to use a listener other than the peer's listener. With this, chaincode streams need not be bound to the peers endpoint allowing more network options for protecting it. The e2e_cli sample uses the chaincodeListenAddress to excercise the separate chaincode listener (on 7052 but on the same IP address as the that peer's listener uses). patch 1 . comment changes (thanks, Binh) Change-Id: Ic0943be6739ef0401e12686721d3e0472479580c Signed-off-by: Srinivasan Muralidharan <[email protected]>
- Loading branch information
Srinivasan Muralidharan
committed
Jun 20, 2017
1 parent
69d40c3
commit 9bce561
Showing
7 changed files
with
104 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ vp: | |
log_driver: none | ||
expose: | ||
- 7051 | ||
- 7052 | ||
environment: | ||
- CORE_PEER_ADDRESSAUTODETECT=true | ||
volumes: | ||
|