Michał Niewrzał
Michał Niewrzał
Projects that aren't converted to Tern projects are also processed by validator. This I believe is not necessary.
This driver implements the storagedriver.StorageDriver interface and uses Storj DCS as storage backend. Stroj DCS is decentralized object storage. For more details please look at this [overview](https://docs.storj.io/dcs/concepts/overview/). Currently, the driver...
Current `metainfo.ListObjects` implementation is using metabase iterator to list objects. Iterator implementation is rather complex and in fact we are not using its capabilities because `metainfo.ListObjects` method is returning only...
At the moment, metainfo DownloadObject, GetObject and other methods are using GetObjectExactVersion method. We need to modify them to use `GetObjectLastCommitted`. In general we need to find and replace all...
Its just reminder ticket that we need to brainstorm what we covered with test and what we didn't. Results of this ticket should a list of test cases to create...
We need to start uploading always into first available version metabase has method to do this: `BeginObjectNextVersion`. While doing upload we first creating pending object with first available version. Later...
Current server-side logic to overwrite object under target location is always using version `1` to delete/overwrite. When we will start using versions different than `1` we need this logic to...
We need method similar to `metabase.DeleteObjectExactVersion` which will delete last committed object. What we need to do: * add method `DeleteObjectLastCommitted` which will be selecting to delete committed object with...
Update metabase.UpdateObjectMetadata method to update set metdata always for last committed object. To find last committed object we should use similar query like in GetObjectLastCommitted method. Acceptance Criteria: * update...
Update GetObjectIPs method to use GetObjectLastCommitted instead of GetObjectExactVersion Acceptance Criteria: - update GetObjectIPs with GetObjectLastCommitted - add test case where metadata is updated for object with version different than...