Skip to content

Commit

Permalink
default compression to 'none'
Browse files Browse the repository at this point in the history
  • Loading branch information
sjvans authored Sep 9, 2024
1 parent 016c240 commit 328939c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion experimental/packages/otlp-grpc-exporter-base/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ export function configureCompression(

const envCompression =
getEnv().OTEL_EXPORTER_OTLP_TRACES_COMPRESSION ||
getEnv().OTEL_EXPORTER_OTLP_COMPRESSION;
getEnv().OTEL_EXPORTER_OTLP_COMPRESSION ||
'none';

if (envCompression === 'gzip') {
return CompressionAlgorithm.GZIP;
Expand Down

0 comments on commit 328939c

Please sign in to comment.