Pinning System Improvements #19
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The following needs to be worked on:
Many small cids can be tested from here:
https://cid.one/#z5TTvXtbkQk9PTUN8r5oNSz5Trmf1NjJwkVoNvfawGKDtPCB
Small files will take seconds to pin, only the large files will really have a progress bar.
Errors returned from S5Client are refine compatible (
HttpError
).Need to reliably be able to pin currently for me on localhost the request is hanging (pending)
Ok this worked once but i see the error you mentioned, the issues is that we are expecting a response from the
pin
endpoint. The thing is that when that response arrives the file is already pinned so no need for the pinning UISmall files get pinned near instantly. The hang is it searching the network for the file then queing it.
Realistically need to test anything over 100 MB. One thing you could do is optimistically assume the pin is successful for UI purposes and run monitor the pin result in a deferred async() IFFE. That way you get the UI and can just revert it, or throw it in an error tab?
done