mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-03-14 22:48:35 +03:00
Fix build failure of coredns plugin introduced by previous merge
This commit is contained in:
parent
16b1a343a0
commit
7dea729656
1 changed files with 3 additions and 3 deletions
|
@ -33,9 +33,9 @@ type hourTop struct {
|
|||
}
|
||||
|
||||
func (top *hourTop) init() {
|
||||
top.domains = gcache.New(topLRUsize).LRU().Build()
|
||||
top.blocked = gcache.New(topLRUsize).LRU().Build()
|
||||
top.clients = gcache.New(topLRUsize).LRU().Build()
|
||||
top.domains = gcache.New(queryLogTopSize).LRU().Build()
|
||||
top.blocked = gcache.New(queryLogTopSize).LRU().Build()
|
||||
top.clients = gcache.New(queryLogTopSize).LRU().Build()
|
||||
}
|
||||
|
||||
type dayTop struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue