mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 13:05:36 +03:00
Merge pull request #55 in DNS/adguard-dns from hotfix to master
* commit '7dea729656fe60aefcd81b7c1b808866d3c334a7': Fix build failure of coredns plugin introduced by previous merge
This commit is contained in:
commit
165722585f
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…
Reference in a new issue