mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Bug: Register OpenTSDB with correct service name (#37581)
* Bug: Register OpenTSDB with correct service name * USe Register instead of RegisterAndStart
This commit is contained in:
parent
6396f05320
commit
769b7a5865
@ -43,7 +43,11 @@ type datasourceInfo struct {
|
||||
type DsAccess string
|
||||
|
||||
func init() {
|
||||
registry.Register(®istry.Descriptor{Instance: &Service{}})
|
||||
registry.Register(®istry.Descriptor{
|
||||
Name: "OpenTSDBService",
|
||||
InitPriority: registry.Low,
|
||||
Instance: &Service{},
|
||||
})
|
||||
}
|
||||
|
||||
func (s *Service) Init() error {
|
||||
|
Loading…
Reference in New Issue
Block a user