@@ -18,7 +18,7 @@ import (
1818 "github.com/buildbarn/bb-remote-execution/pkg/cas"
1919 "github.com/buildbarn/bb-remote-execution/pkg/cleaner"
2020 re_clock "github.com/buildbarn/bb-remote-execution/pkg/clock"
21- re_filesystem "github.com/buildbarn/bb-remote-execution/pkg/filesystem"
21+ "github.com/buildbarn/bb-remote-execution/pkg/filesystem/pool "
2222 "github.com/buildbarn/bb-remote-execution/pkg/filesystem/virtual"
2323 virtual_configuration "github.com/buildbarn/bb-remote-execution/pkg/filesystem/virtual/configuration"
2424 cal_proto "github.com/buildbarn/bb-remote-execution/pkg/proto/completedactionlogger"
@@ -76,7 +76,7 @@ func main() {
7676 // currently only used by the virtual file system to store
7777 // output files of build actions. Going forward, this may be
7878 // used to store core dumps generated by build actions as well.
79- filePool , err := re_filesystem .NewFilePoolFromConfiguration (configuration .FilePool )
79+ filePool , err := pool .NewFilePoolFromConfiguration (configuration .FilePool )
8080 if err != nil {
8181 return util .StatusWrap (err , "Failed to create file pool" )
8282 }
@@ -218,7 +218,7 @@ func main() {
218218 virtualBuildDirectory = virtual .NewInMemoryPrepopulatedDirectory (
219219 virtual .NewHandleAllocatingFileAllocator (
220220 virtual .NewPoolBackedFileAllocator (
221- re_filesystem .EmptyFilePool ,
221+ pool .EmptyFilePool ,
222222 util .DefaultErrorLogger ),
223223 handleAllocator ),
224224 symlinkFactory ,
@@ -466,7 +466,7 @@ func main() {
466466 buildClient := builder .NewBuildClient (
467467 schedulerClient ,
468468 buildExecutor ,
469- re_filesystem .NewQuotaEnforcingFilePool (
469+ pool .NewQuotaEnforcingFilePool (
470470 filePool ,
471471 runnerConfiguration .MaximumFilePoolFileCount ,
472472 runnerConfiguration .MaximumFilePoolSizeBytes ),
0 commit comments