Skip to content

v1.4.15

Compare
Choose a tag to compare
@harrisob harrisob released this 08 Dec 18:13
· 37 commits to release-1.4 since this release
c96891a

fabric-sdk-node 1.4.15 is a maintenance release containing bug fixes and documentation improvements.

The default query timeout may be changed along with the query strategy.
The timeout value is in seconds.

To specify:

const { Gateway, DefaultQueryHandlerStrategies } = require('fabric-network');
const connectOptions = {queryHandlerOptions: {timeout: 60, strategy: DefaultQueryHandlerStrategies.MSPID_SCOPE_SINGLE}};
const gateway = new Gateway();
await gateway.connect(connectionProfile, connectOptions);