Skip to content

Commit

Permalink
[FAB-3550] Configure orderers ROOT CAs properly
Browse files Browse the repository at this point in the history
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 <garratt.jeff@gmail.com>
  • Loading branch information
jeffgarratt committed May 9, 2017
1 parent 0fe5cb2 commit c140def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bddtests/steps/bootstrap_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,8 +958,8 @@ def getEnv(self, composition, context, env):
(keyPath, certPath) = self.getTLSKeyPaths(pnt=pnt, composition=composition, compose_service=ordererService, pathType=PathType.Container)
env["{0}_ORDERER_GENERAL_TLS_CERTIFICATE".format(ordererService.upper())] = certPath
env["{0}_ORDERER_GENERAL_TLS_PRIVATEKEY".format(ordererService.upper())] = keyPath
# env["{0}_ORDERER_GENERAL_TLS_ROOTCAS".format(ordererService.upper())] = "[{0}]".format(self.getLocalMspConfigRootCertPath(
# directory=directory, composition=composition, compose_service=ordererService, pathType=PathType.Container))
env["{0}_ORDERER_GENERAL_TLS_ROOTCAS".format(ordererService.upper())] = "[{0}]".format(self.getLocalMspConfigRootCertPath(
directory=directory, composition=composition, compose_service=ordererService, pathType=PathType.Container))

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

0 comments on commit c140def

Please sign in to comment.