From 35ad73d3be5485ac592e2ef1ea6c0854f1eff4a0 Mon Sep 17 00:00:00 2001 From: Frank Natividad Date: Tue, 24 Sep 2024 08:43:36 -0700 Subject: [PATCH] fix(storage): disable grpc metrics using emulator (#10870) --- storage/grpc_client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/grpc_client.go b/storage/grpc_client.go index 3239557f9d97..d47c41c1908f 100644 --- a/storage/grpc_client.go +++ b/storage/grpc_client.go @@ -95,6 +95,7 @@ func defaultGRPCOptions() []option.ClientOption { option.WithEndpoint(host), option.WithGRPCDialOption(grpc.WithInsecure()), option.WithoutAuthentication(), + WithDisabledClientMetrics(), ) } else { // Only enable DirectPath when the emulator is not being targeted.