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
{{ message }}
This repository was archived by the owner on Apr 29, 2020. It is now read-only.
If I run cat hashes | while read h; do ipfs pin add "$h" & done or ipfs pin add (so it reads from stdin) and paste a list of hashes into stdin, it seems to try these hashes in sequence rather than concurrently (what would be the expected behaviour).
Because of this I failed to pin ~25 hashes for the last 3 days. Just because the very first hash couldn't be fetched. All others seem to work now...
(Pasting this here because I'm not sure whether it belongs to)
Version information:
go-ipfs version: 0.4.8-
Repo version: 5
System version: amd64/linux
Golang version: go1.8
Type:
Bug, unexpected behaviour
Severity:
Medium
Description:
If I run
cat hashes | while read h; do ipfs pin add "$h" & doneoripfs pin add(so it reads from stdin) and paste a list of hashes into stdin, it seems to try these hashes in sequence rather than concurrently (what would be the expected behaviour).Because of this I failed to pin ~25 hashes for the last 3 days. Just because the very first hash couldn't be fetched. All others seem to work now...