From c03586dfe88cd6048fde80d422927519e34f5b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Philippe=20Qu=C3=A9m=C3=A9ner?= Date: Wed, 15 Jan 2025 16:04:41 +0100 Subject: [PATCH] fix(unified-storage): initialize blob storage when using grpc (#99020) --- pkg/storage/unified/resource/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/storage/unified/resource/client.go b/pkg/storage/unified/resource/client.go index f7c4e4c770b..22f1325fb46 100644 --- a/pkg/storage/unified/resource/client.go +++ b/pkg/storage/unified/resource/client.go @@ -101,6 +101,7 @@ func NewGRPCResourceClient(tracer tracing.Tracer, conn *grpc.ClientConn) (Resour return &resourceClient{ ResourceStoreClient: NewResourceStoreClient(cc), ResourceIndexClient: NewResourceIndexClient(cc), + BlobStoreClient: NewBlobStoreClient(cc), DiagnosticsClient: NewDiagnosticsClient(cc), }, nil } @@ -125,6 +126,7 @@ func NewCloudResourceClient(tracer tracing.Tracer, conn *grpc.ClientConn, cfg au return &resourceClient{ ResourceStoreClient: NewResourceStoreClient(cc), ResourceIndexClient: NewResourceIndexClient(cc), + BlobStoreClient: NewBlobStoreClient(cc), DiagnosticsClient: NewDiagnosticsClient(cc), }, nil }