mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
CR fixes
This commit is contained in:
parent
eec0decae7
commit
a8e6de2fab
1 changed files with 2 additions and 2 deletions
|
@ -83,9 +83,9 @@ func subVal(ctx context.EvalInterface, valuePattern interface{}, path string, er
|
|||
return value
|
||||
}
|
||||
// operator + string variable
|
||||
switch value.(type) {
|
||||
switch typedValue := value.(type) {
|
||||
case string:
|
||||
return string(operatorVariable) + value.(string)
|
||||
return typedValue + value.(string)
|
||||
default:
|
||||
glog.Infof("cannot use operator with object variables. operator used %s in pattern %v", string(operatorVariable), valuePattern)
|
||||
return emptyInterface
|
||||
|
|
Loading…
Add table
Reference in a new issue