[#49] engine: Fix target considering order
DCO action / DCO (pull_request) Successful in 1m3s Details
Tests and linters / Tests (1.21) (pull_request) Successful in 1m12s Details
Tests and linters / Tests (1.20) (pull_request) Successful in 1m18s Details
Tests and linters / Staticcheck (pull_request) Successful in 1m23s Details
Tests and linters / Tests with -race (pull_request) Successful in 1m32s Details
Tests and linters / Lint (pull_request) Successful in 2m16s Details

* Namespace target rules should be considered first

Signed-off-by: Airat Arifullin <aarifullin@yadro.com>
pull/49/head
aarifullin 2024-02-06 11:44:11 +03:00
parent 4a989d6bb7
commit 8354a074c4
1 changed files with 3 additions and 3 deletions

View File

@ -70,12 +70,12 @@ func NewRequestTarget(namespace, container string) RequestTarget {
}
func (rt *RequestTarget) Targets() (targets []Target) {
if rt.Container != nil {
targets = append(targets, *rt.Container)
}
if rt.Namespace != nil {
targets = append(targets, *rt.Namespace)
}
if rt.Container != nil {
targets = append(targets, *rt.Container)
}
return
}