forked from github/multus-cni
k8sclient: Add missing error check
Before this change, error returned by `libcni.ConfFiles` was silently ignored. Signed-off-by: Michal Rostecki <mrostecki@suse.de>
This commit is contained in:
@@ -580,6 +580,9 @@ func getNetDelegate(client KubeClient, netname string, confdir string) (*types.D
|
|||||||
if err == nil {
|
if err == nil {
|
||||||
if fInfo.IsDir() {
|
if fInfo.IsDir() {
|
||||||
files, err := libcni.ConfFiles(netname, []string{".conf", ".conflist"})
|
files, err := libcni.ConfFiles(netname, []string{".conf", ".conflist"})
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
if len(files) > 0 {
|
if len(files) > 0 {
|
||||||
var configBytes []byte
|
var configBytes []byte
|
||||||
configBytes, err = getCNIConfigFromFile("", netname)
|
configBytes, err = getCNIConfigFromFile("", netname)
|
||||||
|
Reference in New Issue
Block a user