Mark S. Lewis

Results 98 comments of Mark S. Lewis

I found that, since I really care about the dependencies (including transitive dependencies) that will be on the classpath at runtime, and required by any consuming packages, the approach that...

I briefly looked at this and it seems more involved than I'd hoped, particularly since migrating fabric-gateway was very easy (see [commit](https://github.com/hyperledger/fabric-gateway/commit/fbfcc708e3702046d1a3a78e30d4754666876f04)). Other Fabric packages like [fabric-config](http://github.com/hyperledger/fabric-config) expose the older/deprecated...

It seems like this might have highlighted an underlying issue with how protobuf messages are handled. There are cases where they are passed by value, whereas the protobuf packages are...

At the wire level the change is 100% compatible. It makes no difference to the client or server whether the other is using apiv1 or apiv2. The incompatibilities come when...

For reference, Go chaincodes are updated to use [fabric-protos-go-apiv2](https://github.com/hyperledger/fabric-protos-go-apiv2): - fabric-chaincode-go v2 is delivered in hyperledger/fabric-chaincode-go#108 - fabric-contract-api-go v2 is delivered in hyperledger/fabric-contract-api-go#137 - fabric-samples is updated to use fabric-contract-api-go...

It seems that the client did not observe a block event from peer0-org1 that contained the transaction before it gave up waiting after a timeout period. The transaction might have...

I don't see you mention installing the packaged chaincode before approving. Check the [Fabric documentation on chaincode lifecycle](https://hyperledger-fabric.readthedocs.io/en/latest/chaincode_lifecycle.html) for the steps required and their order. It's also worth checking that...

It might be the connections to the peers are being closed by something along the network path (like an ingress controller or firewall) if they are idle too long. If...

Is this an issue that has only started occurring after picking up a newer Node SDK version? If so, do you know the versions that worked and the one that...

@tittuvarghese Did you have any luck solving the disconnection issues by configuring appropriate keep-alive and related gRPC settings?