The ff init fabric command is not working due to this code snippet:
|
if err := request("GET", fmt.Sprintf("https://raw.githubusercontent.com/hyperledger/firefly/%s/manifest.json", version), nil, &manifest); err != nil { |
This is happening because the GitHub request limit has been exceeded.
I propose making the manifest.json file and any other files that need similar access available in the release artifacts, so it's possible to make the request without hitting the limit.
The
ff init fabriccommand is not working due to this code snippet:firefly-cli/internal/core/manifest.go
Line 97 in 52ea718
This is happening because the GitHub request limit has been exceeded.
I propose making the
manifest.jsonfile and any other files that need similar access available in the release artifacts, so it's possible to make the request without hitting the limit.