We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb3c30a commit 57af677Copy full SHA for 57af677
pkg/agent/config.go
@@ -301,7 +301,9 @@ func InitAgentCmdFlags(c *cobra.Command, cfg *AgentCmdFlags) {
301
c.PersistentFlags().BoolVar(
302
&cfg.DisableCompression,
303
"disable-compression",
304
- false,
+ // Compression was disabled after we found that the backend didn't
305
+ // support it. See: https://venafi.atlassian.net/browse/VC-37264.
306
+ true,
307
"Disables GZIP compression when uploading the data. Useful for debugging purposes or when an intermediate proxy doesn't like compressed data.",
308
)
309
}
0 commit comments