You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The init flow in the new fabric 1.4 connector can configure a fabric network but should not be used outside of the caliper build environment. As it uses Mutual TLS it works. The fabric 2.2 init flow doesn't do anything except log. The problem is both of the init flows make the following call
The issue here is that getConnectionProfileDefinitionForOrganization returns a promise, so it is missing an await.
We should fix this for 1.4, but for 2.2 given that init does nothing and there is no point using an init flow, we should no-op this in the 2.2 connector.
The text was updated successfully, but these errors were encountered:
fixes the issue where on the init flow you get
TypeError:
this.connectorConfiguration.getConnectionProfileDefinitionForOrganization(...).isTLSEnabled
is not a function
closeshyperledger-caliper#1160
Signed-off-by: D <[email protected]>
fixes the issue where on the init flow you get
TypeError:
this.connectorConfiguration.getConnectionProfileDefinitionForOrganization(...).isTLSEnabled
is not a function
closes#1160
Signed-off-by: D <[email protected]>
Co-authored-by: D <[email protected]>
The init flow in the new fabric 1.4 connector can configure a fabric network but should not be used outside of the caliper build environment. As it uses Mutual TLS it works. The fabric 2.2 init flow doesn't do anything except log. The problem is both of the init flows make the following call
The issue here is that
getConnectionProfileDefinitionForOrganization
returns a promise, so it is missing anawait
.We should fix this for 1.4, but for 2.2 given that init does nothing and there is no point using an init flow, we should no-op this in the 2.2 connector.
The text was updated successfully, but these errors were encountered: