mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Search: raise service init prio (#23740)
This commit is contained in:
parent
c72d8b763e
commit
8620b7c2aa
@ -11,7 +11,11 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
registry.RegisterService(&SearchService{})
|
registry.Register(®istry.Descriptor{
|
||||||
|
Name: "SearchService",
|
||||||
|
Instance: &SearchService{},
|
||||||
|
InitPriority: 20,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
type Query struct {
|
type Query struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user