mirror of
https://github.com/grafana/grafana.git
synced 2025-01-21 22:13:38 -06:00
register datasource cache service with proper name
This commit is contained in:
parent
5d4dc18bbc
commit
6f9c0241af
@ -20,7 +20,11 @@ type CacheServiceImpl struct {
|
||||
}
|
||||
|
||||
func init() {
|
||||
registry.RegisterService(&CacheServiceImpl{})
|
||||
registry.Register(®istry.Descriptor{
|
||||
Name: "DatasourceCacheService",
|
||||
Instance: &CacheServiceImpl{},
|
||||
InitPriority: registry.Low,
|
||||
})
|
||||
}
|
||||
|
||||
func (dc *CacheServiceImpl) Init() error {
|
||||
|
Loading…
Reference in New Issue
Block a user