Skip to content

Commit c140def

Browse files
committed
[FAB-3550] Configure orderers ROOT CAs properly
The configuration of the orderer's root CAs was commented out. Now reinstated. Still do NOT expect this behave to pass as there will be a subsequent CR to modify the role used for instantiation to accomodate most recent changes to instantiation policy endorsement in peer. Change-Id: I7da385c9f9af3b0fb81c8b89296595a51d814cc4 Signed-off-by: Jeff Garratt <[email protected]>
1 parent 0fe5cb2 commit c140def

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bddtests/steps/bootstrap_util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -958,8 +958,8 @@ def getEnv(self, composition, context, env):
958958
(keyPath, certPath) = self.getTLSKeyPaths(pnt=pnt, composition=composition, compose_service=ordererService, pathType=PathType.Container)
959959
env["{0}_ORDERER_GENERAL_TLS_CERTIFICATE".format(ordererService.upper())] = certPath
960960
env["{0}_ORDERER_GENERAL_TLS_PRIVATEKEY".format(ordererService.upper())] = keyPath
961-
# env["{0}_ORDERER_GENERAL_TLS_ROOTCAS".format(ordererService.upper())] = "[{0}]".format(self.getLocalMspConfigRootCertPath(
962-
# directory=directory, composition=composition, compose_service=ordererService, pathType=PathType.Container))
961+
env["{0}_ORDERER_GENERAL_TLS_ROOTCAS".format(ordererService.upper())] = "[{0}]".format(self.getLocalMspConfigRootCertPath(
962+
directory=directory, composition=composition, compose_service=ordererService, pathType=PathType.Container))
963963

964964
class PeerCompositionCallback(compose.CompositionCallback, CallbackHelper):
965965
'Responsible for setting up Peer nodes upon composition'

0 commit comments

Comments
 (0)