Improved error message and test cases for 4240

This commit is contained in:
m-Bilal
2022-01-09 19:05:49 +05:30
parent ff7b2f20d5
commit 7674c220b1
2 changed files with 50 additions and 1 deletions

View File

@@ -442,7 +442,7 @@ func getNamespacesForRoleBinding(r *resource.Resource) (map[string]bool, error)
if n, ok3 := ns.(string); ok3 {
result[n] = true
} else {
return nil, errors.New("Invalid Input: namespace is blank")
return nil, errors.New(fmt.Sprintf("Invalid Input: namespace is blank for resource %q\n", r.CurId()))
}
}
}