forked from TrueCloudLab/policy-engine
[#49] engine: Fix target considering order
* Namespace target rules should be considered first Signed-off-by: Airat Arifullin <aarifullin@yadro.com>
This commit is contained in:
parent
4a989d6bb7
commit
8354a074c4
1 changed files with 3 additions and 3 deletions
|
@ -70,12 +70,12 @@ func NewRequestTarget(namespace, container string) RequestTarget {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (rt *RequestTarget) Targets() (targets []Target) {
|
func (rt *RequestTarget) Targets() (targets []Target) {
|
||||||
if rt.Container != nil {
|
|
||||||
targets = append(targets, *rt.Container)
|
|
||||||
}
|
|
||||||
if rt.Namespace != nil {
|
if rt.Namespace != nil {
|
||||||
targets = append(targets, *rt.Namespace)
|
targets = append(targets, *rt.Namespace)
|
||||||
}
|
}
|
||||||
|
if rt.Container != nil {
|
||||||
|
targets = append(targets, *rt.Container)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue