You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 27, 2024. It is now read-only.
// Another <image>.json file has already been processed and the image config obtained is uncertain.
273
-
glog.Error("Multiple possible config sources detected for image at "+p.Source+". Multiple images likely contained in tar. Choosing first one, but diff results may not be completely accurate.")
274
-
break
275
-
}
276
-
fileName:=filepath.Join(tempDir, item.Name())
277
-
file, err:=ioutil.ReadFile(fileName)
278
-
iferr!=nil {
279
-
glog.Errorf("Could not read config file %s: %s", fileName, err)
280
-
returnConfigSchema{}, errors.New("Could not obtain image config")
281
-
}
282
-
err=json.Unmarshal(file, &config)
283
-
iferr!=nil {
284
-
glog.Errorf("Could not marshal config file %s: %s", fileName, err)
285
-
returnConfigSchema{}, errors.New("Could not obtain image config")
0 commit comments