feat(aa): be more verbose on rule.Merge

This commit is contained in:
Alexandre Pujol 2024-06-25 20:10:12 +01:00
parent 880f0ef37e
commit 7c006dee0a
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
11 changed files with 69 additions and 29 deletions

View file

@ -80,3 +80,7 @@ func (r *Rlimit) Compare(other Rule) int {
}
return compare(r.Value, o.Value)
}
func (r *Rlimit) Merge(other Rule) bool {
return false // Never merge rlimit
}