mirror of
https://github.com/containers/podman.git
synced 2025-10-19 20:23:08 +08:00
fix(deps): update github.com/containers/common digest to 9342cdd
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
6
vendor/github.com/containers/common/libnetwork/cni/network.go
generated
vendored
6
vendor/github.com/containers/common/libnetwork/cni/network.go
generated
vendored
@ -9,6 +9,7 @@ import (
|
||||
"encoding/hex"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/fs"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
@ -201,7 +202,10 @@ func (n *cniNetwork) loadNetworks() error {
|
||||
|
||||
net, err := createNetworkFromCNIConfigList(conf, file)
|
||||
if err != nil {
|
||||
logrus.Errorf("CNI config list %s could not be converted to a libpod config, skipping: %v", file, err)
|
||||
// ignore ENOENT as the config has been removed in the meantime so we can just ignore this case
|
||||
if !errors.Is(err, fs.ErrNotExist) {
|
||||
logrus.Errorf("CNI config list %s could not be converted to a libpod config, skipping: %v", file, err)
|
||||
}
|
||||
continue
|
||||
}
|
||||
logrus.Debugf("Successfully loaded network %s: %v", net.Name, net)
|
||||
|
Reference in New Issue
Block a user