Skip to content

Commit

Permalink
fix(size): Size down to 110MB max
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteFoy committed Jan 17, 2023
1 parent 3364bbb commit 65b823f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/remote/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const (
minBackoffFactor = 2.0
recoveryInterval = 2

maxMessageSize = 1024 * 1024 * 500 // 500MB, current backend limit
maxMessageSize = 1024 * 1024 * 110 // 110MB, current backend limit
)

// ConfigUpdater defines the interface that an agent client uses to get config updates
Expand Down

0 comments on commit 65b823f

Please sign in to comment.