From b839bb7a8167fd5d300f27221cc68aa537c5c548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Farkas?= Date: Mon, 4 Aug 2025 11:00:59 +0200 Subject: [PATCH] datasources: querier: removed unused method (#109109) --- pkg/registry/apis/query/client/supplier.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/registry/apis/query/client/supplier.go b/pkg/registry/apis/query/client/supplier.go index a870f74fed8..646068a8d9d 100644 --- a/pkg/registry/apis/query/client/supplier.go +++ b/pkg/registry/apis/query/client/supplier.go @@ -37,10 +37,6 @@ func NewSingleTenantClientSupplier(cfg *setting.Cfg, features featuremgmt.Featur } } -func (s *singleTenantClientSupplier) GetDataSourceClient(_ context.Context, _ data.DataSourceRef, _ map[string]string) (clientapi.QueryDataClient, error) { - return s.client, nil -} - func (s *singleTenantClientSupplier) GetInstance(_ context.Context) (clientapi.Instance, error) { return &singleTenantInstance{ client: s.client,