mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
register datasource cache service with proper name
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user