-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-5152] Make relative paths work for BCCSP conf
Prior to this change, if peer.BCCSP.SW.FileKeyStore.KeyStore is set to a relative path, the local MSP will fail to load. Change-Id: I840ad82f4cda635e4a464b0a473d35289fe5e795 Signed-off-by: Gari Singh <gari.r.singh@gmail.com>
- Loading branch information
1 parent
30aed74
commit 96556c8
Showing
5 changed files
with
69 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
peer: | ||
BCCSP: | ||
Default: SW | ||
SW: | ||
Hash: SHA2 | ||
Security: 256 | ||
FileKeyStore: | ||
# absolute path | ||
KeyStore: /msp/keystore |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
peer: | ||
BCCSP: | ||
Default: SW | ||
SW: | ||
Hash: SHA2 | ||
Security: 256 | ||
FileKeyStore: | ||
# not set | ||
KeyStore: |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
peer: | ||
BCCSP: | ||
Default: SW | ||
SW: | ||
Hash: SHA2 | ||
Security: 256 | ||
FileKeyStore: | ||
# relative path | ||
KeyStore: msp/keystore |