mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Remove bus from usage stats (#45275)
This commit is contained in:
@@ -12,7 +12,7 @@ const (
|
||||
AllOrganizations = -1
|
||||
)
|
||||
|
||||
func ProvideService(sqlStore *sqlstore.SQLStore) KVStore {
|
||||
func ProvideService(sqlStore sqlstore.Store) KVStore {
|
||||
return &kvStoreSQL{
|
||||
sqlStore: sqlStore,
|
||||
log: log.New("infra.kvstore.sql"),
|
||||
|
||||
@@ -12,7 +12,7 @@ import (
|
||||
// kvStoreSQL provides a key/value store backed by the Grafana database
|
||||
type kvStoreSQL struct {
|
||||
log log.Logger
|
||||
sqlStore *sqlstore.SQLStore
|
||||
sqlStore sqlstore.Store
|
||||
}
|
||||
|
||||
// Get an item from the store
|
||||
|
||||
Reference in New Issue
Block a user