aboutsummaryrefslogtreecommitdiffstats
path: root/storage/transactional
Commit message (Collapse)AuthorAgeFilesLines
* transactional/ReferenceStorage: Drop packRefs fieldAbhinav Gupta2021-11-271-4/+0
| | | | | | | | | | | | | | The packRefs field is unused. It is assigned to true from the `PackRefs()` method, but because the method is not on the pointer type, the assignment has no effect. var st ReferenceStorage fmt.Println(st.packRefs) // false st.PackRefs() fmt.Println(st.packRefs) // false Delete the unused field.
* storage/transactional: Use correct config in testAbhinav Gupta2021-11-271-1/+1
| | | | | | The `cfg` loaded from `cs.Config` was unused. It looks like this assertion intended to validate that, not `temporalCfg`, which was already checked above this block.
* Minor linter fixesOleg Kovalov2020-07-061-1/+1
|
* fix goreportcard warningsOleg Kovalov2020-07-015-5/+10
|
* *: migration from go-git-fixtures/v4 and go-git/gcfgMáximo Cuadros2020-03-101-2/+1
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-1012-30/+30
|
* transactional: implement storer.PackfileWriterJavi Fontan2019-03-212-9/+67
| | | | Signed-off-by: Javi Fontan <jfontan@gmail.com>
* storage: transactional, package documentationMáximo Cuadros2019-02-028-21/+75
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* storage: transactional, new storage with transactional capabilitiesMáximo Cuadros2018-12-1013-5/+675
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* storage: transactional, new storage with transactional capabilities (WIP)Máximo Cuadros2018-10-295-0/+289
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>