Skip to content

Commit 4eea8a9

Browse files
committed
[FAB-8516] cryptogen NodeOUs should match fabric-ca
cryptogen generates the following NodeOUs (when enabled): OU=FabricClient OU=FabricPeer fabric-ca generates: OU=client OU=peer This causes issues if you try to bootstrap a network with cryptogen and then enroll clients with fabric-ca. It's trivial to make cryptogen use the same OUs as fabric-ca. Change-Id: I817f5e034822cfb1b6ce6bf5635a5e19fe6b74ba Signed-off-by: Gari Singh <gari.r.singh@gmail.com>
1 parent 271dea5 commit 4eea8a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/tools/cryptogen/msp/generator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ const (
2828
)
2929

3030
const (
31-
CLIENTOU = "FabricClient"
32-
PEEROU = "FabricPeer"
31+
CLIENTOU = "client"
32+
PEEROU = "peer"
3333
)
3434

3535
var nodeOUMap = map[int]string{

0 commit comments

Comments
 (0)