From 8fd51a927e5a75c6d397152f57823d60a3b6e3af Mon Sep 17 00:00:00 2001 From: Matthew B White Date: Fri, 19 Jun 2020 15:38:13 +0100 Subject: [PATCH] [FABCN-415] Lock grpc-js to 1.0.3 @grpc/grpc-js updated to 1.1.0; this has caused the initial request to the peer on chaincode start to fail. Dropping back to 1.0.3 resolves the issue. See FABCN-415 Signed-off-by: Matthew B White --- libraries/fabric-shim/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/fabric-shim/package.json b/libraries/fabric-shim/package.json index 5a69f374..2a305536 100644 --- a/libraries/fabric-shim/package.json +++ b/libraries/fabric-shim/package.json @@ -55,7 +55,7 @@ }, "dependencies": { "@fidm/x509": "^1.2.1", - "@grpc/grpc-js": "^1.0.3", + "@grpc/grpc-js": "1.0.3", "@grpc/proto-loader": "^0.5.4", "@types/node": "^8.9.4", "ajv": "^6.5.5",