From fc514738b25fe218f129881a84e95ca9dd88a4c3 Mon Sep 17 00:00:00 2001 From: Gabriel MABILLE Date: Fri, 18 Feb 2022 11:46:52 +0100 Subject: [PATCH] Chore: fix comment (#45593) --- pkg/services/sqlstore/datasource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/sqlstore/datasource.go b/pkg/services/sqlstore/datasource.go index 7f3f0cd3219..6ec9c94a193 100644 --- a/pkg/services/sqlstore/datasource.go +++ b/pkg/services/sqlstore/datasource.go @@ -88,7 +88,7 @@ func (ss *SQLStore) GetDefaultDataSource(ctx context.Context, query *models.GetD } // DeleteDataSource removes a datasource by org_id as well as either uid (preferred), id, or name -// and is added to the bus. It also removes permissions related to the team. +// and is added to the bus. It also removes permissions related to the datasource. func (ss *SQLStore) DeleteDataSource(ctx context.Context, cmd *models.DeleteDataSourceCommand) error { return ss.WithTransactionalDbSession(ctx, func(sess *DBSession) error { dsQuery := &models.GetDataSourceQuery{Id: cmd.ID, Uid: cmd.UID, Name: cmd.Name, OrgId: cmd.OrgID}