Storage: remove git backing for storage (#79181)

This commit is contained in:
Ryan McKinley
2023-12-06 14:04:13 -08:00
committed by GitHub
parent 9849c954a3
commit deb8faf1e3
6 changed files with 4 additions and 634 deletions

View File

@@ -130,8 +130,6 @@ func newStorage(cfg RootStorageConfig, localWorkCache string) (storageRuntime, e
switch cfg.Type {
case rootStorageTypeDisk:
return newDiskStorage(RootStorageMeta{}, cfg), nil
case rootStorageTypeGit:
return newGitStorage(RootStorageMeta{}, cfg, localWorkCache), nil
}
return nil, fmt.Errorf("unsupported store: " + cfg.Type)