summaryrefslogtreecommitdiffhomepage
path: root/table
diff options
context:
space:
mode:
Diffstat (limited to 'table')
-rw-r--r--table/policy.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/table/policy.go b/table/policy.go
index 424a8562..66416931 100644
--- a/table/policy.go
+++ b/table/policy.go
@@ -2690,11 +2690,16 @@ func (r *RoutingPolicy) GetAssignmentFromConfig(dir PolicyDirection, a config.Ap
def = ROUTE_TYPE_REJECT
}
ps := make([]*Policy, 0, len(names))
+ seen := make(map[string]bool)
for _, name := range names {
p, ok := r.PolicyMap[name]
if !ok {
return nil, def, fmt.Errorf("not found policy %s", name)
}
+ if seen[name] {
+ return nil, def, fmt.Errorf("duplicated policy %s", name)
+ }
+ seen[name] = true
ps = append(ps, p)
}
return ps, def, nil