Search: raise service init prio (#23740)

This commit is contained in:
Leonard Gram 2020-04-21 15:30:09 +02:00 committed by GitHub
parent c72d8b763e
commit 8620b7c2aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,11 @@ import (
)
func init() {
registry.RegisterService(&SearchService{})
registry.Register(&registry.Descriptor{
Name: "SearchService",
Instance: &SearchService{},
InitPriority: 20,
})
}
type Query struct {