Commit 8620b7c2 by Leonard Gram Committed by GitHub

Search: raise service init prio (#23740)

parent c72d8b76
......@@ -11,7 +11,11 @@ import (
)
func init() {
registry.RegisterService(&SearchService{})
registry.Register(&registry.Descriptor{
Name: "SearchService",
Instance: &SearchService{},
InitPriority: 20,
})
}
type Query struct {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment