File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import (
1919 "google.golang.org/grpc"
2020 "google.golang.org/grpc/credentials"
2121 "google.golang.org/grpc/credentials/insecure"
22+ "google.golang.org/grpc/encoding/gzip"
2223
2324 "github.com/smartcontractkit/chainlink-common/pkg/beholder"
2425 "github.com/smartcontractkit/chainlink-common/pkg/config/build"
@@ -151,7 +152,7 @@ func (config TracingConfig) NewSpanExporter() (sdktrace.SpanExporter, error) {
151152 traceExporter , err := otlptracegrpc .New (ctx ,
152153 otlptracegrpc .WithGRPCConn (conn ),
153154 otlptracegrpc .WithHeaders (config .AuthHeaders ),
154- otlptracegrpc .WithCompressor (DefaultCompressionType ),
155+ otlptracegrpc .WithCompressor (gzip . Name ),
155156 )
156157 if err != nil {
157158 return nil , err
You can’t perform that action at this time.
0 commit comments