mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix negative index
Signed-off-by: Shuting Zhao <shutting06@gmail.com>
This commit is contained in:
parent
517c60fadc
commit
7795f335c8
1 changed files with 3 additions and 0 deletions
|
@ -243,6 +243,9 @@ func getObject(path string, resource map[string]interface{}) (interface{}, error
|
|||
if err != nil {
|
||||
return nil, fmt.Errorf("cannot parse index in JSON Patch at %s: %v", strings.Join(paths[:i+1], "/"), err)
|
||||
}
|
||||
if idx < 0 {
|
||||
idx = len(strippedResource.([]interface{})) - 1
|
||||
}
|
||||
}
|
||||
|
||||
if len(strippedResource.([]interface{})) <= idx {
|
||||
|
|
Loading…
Add table
Reference in a new issue