Merge pull request #14802 from rhatdan/error
If a user hits this error it would be helpful to know tagstore name. Upstream-commit: a10cb08bbbb60ffa8b83ff919a9d7ea68bf222e0 Component: engine
This commit is contained in:
@ -686,7 +686,7 @@ func NewDaemon(config *Config, registryService *registry.Service) (daemon *Daemo
|
||||
}
|
||||
repositories, err := graph.NewTagStore(filepath.Join(config.Root, "repositories-"+d.driver.String()), tagCfg)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("Couldn't create Tag store: %s", err)
|
||||
return nil, fmt.Errorf("Couldn't create Tag store repositories-%s: %s", d.driver.String(), err)
|
||||
}
|
||||
|
||||
d.netController, err = initNetworkController(config)
|
||||
|
||||
Reference in New Issue
Block a user