Junpei Kawamoto

Results 27 issues of Junpei Kawamoto

We still get thousand of goroutines that waits for locking a tryLock: ``` goroutine 458763 [chan receive, 94 minutes]: lukechampine.com/us/renter/renterutil.(*tryLock).Lock(...) ``` It looks like https://github.com/lukechampine/us/pull/167 isn't enough and there might...

`lh.mu` needs to be released. https://github.com/lukechampine/us/blob/36e1081712379a6af2b3f49ca4aadfb1b1786625/renter/renterutil/hostset.go#L102-L112

In PseudoFS, the user should be responsible for cancellation because the user could cancel writing contents to PseudoFile. However, in PseudoKV, currently, there is no way to cancel uploading/downloading. We...

We've been getting `Read: host rejected Read request: could not find the desired sector` error after contract renewal. We could download the sector before renewal. The renewal happened because the...

If the callback function passed to `ForEachBlob` calls another DB method such as `DeleteBlob` and `Metadata`, if I'm not mistaken, those methods try to acquire the lock and cause a...

I'm not sure if there is a bug or just the test needs a long time, but go test panics on the `master` branch (3e9f269) with this output: ``` ===...

It'd be helpful if DBBlob remembers the last modified timestamp because we need to sync new blob objects among gateways. Relate to #67.