- 10 Aug, 2021 2 commits
-
-
tavit ohanian authored
-
tavit ohanian authored
-
- 21 Jun, 2021 2 commits
-
-
tavit ohanian authored
-
tavit ohanian authored
-
- 02 May, 2021 2 commits
-
-
tavit ohanian authored
-
tavit ohanian authored
-
- 04 Jan, 2021 1 commit
-
-
Steven Allen authored
fix typo in readme.go
-
- 27 Dec, 2020 1 commit
-
-
Michael Vorburger ⛑️ authored
-
- 29 Jul, 2020 1 commit
-
-
Fazlul Shahriar authored
os.Rename documentation says: "OS-specific restrictions may apply when oldpath and newpath are in different directories." On Unix, this means we can't rename across devices. On Plan 9 however, the functionality is even more limited: cross-directory renames are not allowed at all. Add a wrapper around os.Rename for Plan 9, which will copy the file if we're renaming across directory. All tests seems to pass. (Aside: I also had to write this wrapper to get go-git working on Plan 9: https://github.com/go-git/go-billy/blob/v5.0.0/osfs/os_plan9.go#L27 but I notice few issues with that one.) Fixes #86
-
- 04 May, 2020 1 commit
-
-
Hector Sanjuan authored
-
- 27 Apr, 2020 1 commit
-
-
Hector Sanjuan authored
-
- 17 Apr, 2020 5 commits
-
-
Steven Allen authored
move retries lower and retry rename ops
-
Steven Allen authored
-
Steven Allen authored
Co-Authored-By: Will <will.scott@protocol.ai>
-
Steven Allen authored
Retry renames when the error wasn't due to a file not existing. This case can come up on windows when some other process opens the file for reading while we're trying to rename it.
-
Steven Allen authored
Instead or retrying the whole operation, retry the specific parts that can fail. I believe this also fixes cases where we might end up with a retry loop within a retry loop? I'm not sure.
-
- 13 Apr, 2020 2 commits
-
-
Steven Allen authored
cleanup putMany implementation
-
Steven Allen authored
* Use a map for dirsToSync to avoid syncing the same dir multiple times. * Keep track of files in a slice, and use offsets into the slice to keep track of which ones have been closed/removed. Also, record the fact that we've created a temporary file _before_ we try to write to it, in case the write fails. That way, we'll try to remove it when we abort.
-
- 10 Apr, 2020 15 commits
-
-
Steven Allen authored
feat: read harder
-
Steven Allen authored
Instead of retrying in get only, retry everywhere we read a file.
-
Steven Allen authored
fix: remove temporary files when multiple write operations conflict
-
Steven Allen authored
When multiple write operations conflict, we: 1. Try them in-order till one succeeds. 2. After the fact, re-order them such that the pending operations "happen" after the one that succeeds. 3. Return "success" for all the pending write operations for that key. This is acceptable because we're claiming that the operation that _actually_ succeeded happened "last" so it would have clobbered the other operations. However, in the case of put, we still need to remove the temporary file that we didn't end up moving into place.
-
Will authored
add fd-overload retries inline
-
Steven Allen authored
Windows CI + Fixes
-
Will Scott authored
-
Steven Allen authored
fix: close query when finished moving
-
Steven Allen authored
fix: ensure that we close the diskusage file, even if we fail to rename it
-
Steven Allen authored
-
Will Scott authored
-
Will Scott authored
-
Steven Allen authored
-
Steven Allen authored
-
Will Scott authored
-
- 09 Apr, 2020 3 commits
-
-
Will Scott authored
-
Will Scott authored
-
Will Scott authored
-
- 01 Apr, 2020 4 commits
-
-
Steven Allen authored
-
Steven Allen authored
Bump github.com/ipfs/go-datastore from 0.4.2 to 0.4.4
-
Steven Allen authored
Bump github.com/jbenet/goprocess from 0.1.3 to 0.1.4
-
Steven Allen authored
feat: put all temporary files in the same directory and clean them up
-