Merge pull request #1801 from rhatdan/subscription

Drop warning to info on missing content from mounts.conf
This commit is contained in:
openshift-merge-bot[bot] 2024-01-16 12:51:15 +00:00 committed by GitHub
commit b2968c054e
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ func addSubscriptionsFromMountsFile(filePath, mountLabel, containerRunDir string
fileInfo, err := os.Stat(hostDirOrFile)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
logrus.Warnf("Path %q from %q doesn't exist, skipping", hostDirOrFile, filePath)
logrus.Infof("Path %q from %q doesn't exist, skipping", hostDirOrFile, filePath)
continue
}
return nil, err