Skip to content

Commit

Permalink
fix: adjust DM max size (#1764)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenruizdegauna committed Dec 15, 2023
1 parent 9fb4b9a commit 0fc94f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/backend/telemetryapi/request.go
Expand Up @@ -15,7 +15,7 @@ import (
)

var (
maxCompressedSizeBytes = 1 << 20 //nolint:gochecknoglobals
maxCompressedSizeBytes = 1_000_000 //nolint:gochecknoglobals
compressFunc func(b []byte) (*bytes.Buffer, error) = internal.Compress //nolint:gochecknoglobals
)

Expand Down

0 comments on commit 0fc94f6

Please sign in to comment.