Skip to content

Commit 57af677

Browse files
committed
disable compression to give us time to work on a fix
1 parent eb3c30a commit 57af677

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/agent/config.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,9 @@ func InitAgentCmdFlags(c *cobra.Command, cfg *AgentCmdFlags) {
301301
c.PersistentFlags().BoolVar(
302302
&cfg.DisableCompression,
303303
"disable-compression",
304-
false,
304+
// Compression was disabled after we found that the backend didn't
305+
// support it. See: https://venafi.atlassian.net/browse/VC-37264.
306+
true,
305307
"Disables GZIP compression when uploading the data. Useful for debugging purposes or when an intermediate proxy doesn't like compressed data.",
306308
)
307309
}

0 commit comments

Comments
 (0)