1
0

fix: load, not import

This commit is contained in:
2024-02-21 18:31:33 +00:00
parent 451566d27f
commit 35df5850f5
3 changed files with 5 additions and 5 deletions

View File

@ -175,7 +175,7 @@ func (cmd *KernelCmd) fetchContainerCache(c container.Container) {
}
path := cache.ContainerURL(c.Name())
err := container.Import(path, c.Name())
err := container.Load(path, c.Name())
if err == nil {
log.Info().Msgf("container %s -> %s", path, c.Name())
}