diff options
author | Filip Navara <filip.navara@gmail.com> | 2018-11-28 01:29:41 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2018-11-28 01:29:41 +0100 |
commit | 8f52c5099e7fe4a2519920a7bbf5a9bb52ff9cec (patch) | |
tree | 6b08348c45ad42e1979d35b43908d5077d99cf78 /storage/filesystem/storage.go | |
parent | 3dbfb89e0f5bce0008724e547b999fe3af9f60db (diff) | |
download | go-git-8f52c5099e7fe4a2519920a7bbf5a9bb52ff9cec.tar.gz |
plumbing: format/packfile, performance optimizations for reading large commit histories (#963)
Signed-off-by: Filip Navara <navara@emclient.com>
Diffstat (limited to 'storage/filesystem/storage.go')
-rw-r--r-- | storage/filesystem/storage.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/storage/filesystem/storage.go b/storage/filesystem/storage.go index 14a772a..370f7bd 100644 --- a/storage/filesystem/storage.go +++ b/storage/filesystem/storage.go @@ -51,11 +51,7 @@ func NewStorageWithOptions(fs billy.Filesystem, cache cache.Object, ops Options) fs: fs, dir: dir, - ObjectStorage: ObjectStorage{ - options: ops, - deltaBaseCache: cache, - dir: dir, - }, + ObjectStorage: *NewObjectStorageWithOptions(dir, cache, ops), ReferenceStorage: ReferenceStorage{dir: dir}, IndexStorage: IndexStorage{dir: dir}, ShallowStorage: ShallowStorage{dir: dir}, |