1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix "failed to patch resource: json: cannot unmarshal array into Go value of type jsonpatch.Operation"

This commit is contained in:
Shuting Zhao 2019-09-04 11:58:57 -07:00
parent 08e8b5bd4c
commit b39ec75dbd

View file

@ -89,11 +89,9 @@ func ApplyPatches(resource []byte, patches [][]byte) ([]byte, error) {
return patchedDocument, err
}
//ApplyPatchNew ...
//ApplyPatchNew patches given resource with given joined patches
func ApplyPatchNew(resource, patch []byte) ([]byte, error) {
patchesList := [][]byte{patch}
joinedPatches := JoinPatches(patchesList)
jsonpatch, err := jsonpatch.DecodePatch(joinedPatches)
jsonpatch, err := jsonpatch.DecodePatch(patch)
if err != nil {
return nil, err
}