Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.45 KB

KnownIssues.md

File metadata and controls

49 lines (33 loc) · 1.45 KB

Known Issues

This document lists the known issues that you may experience during operation of minifabric.

Chaincode Installation

  1. Error installing chaincode

Kubernetes

  1. Service Endpoint Error

ISSUE:

Error: chaincode install failed with status: 500 - failed to invoke backing implementation of 'InstallChaincode'

ENVIRONMENT:

Mac with Intel Chip / MacOS Big Sur 11.3.1 / Docker 20.10.6

SOLUTION:

  • Launch Docker Dashboard
  • Open Preferences
  • Click Experimental Features
  • Disable Use gRPC FUSE for file sharing
  • Apply / Restart

Related issue(s): #214 #87


ISSUE:

ServiceEndpoint Error: Failed to connect to remote gRPC server x.x.x.x:xxxx, url:grpcs://localhost:xxxx

ENVIRONMENT:

Kubernetes / K8S

SOLUTION:

When connecting to the fabric network deployed in Kubernetes/K8S cluster using the minifabric generated connection profiles with Fabric SDK, make sure to double check that the GatewayOptions.discovery asLocalhost = false as shown below (otherwise if set to true, the SDK will be forced to use localhost when discovering peers/orders).

 GatewayOptions = {
  wallet,
  identity: ca_admin,
  discovery: { enabled: true, asLocalhost: false }
}

Related issue(s): #215