From 57af6775df9810ee9b5c7cee5709ac3db2096275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Valais?= Date: Fri, 22 Nov 2024 14:42:41 +0100 Subject: [PATCH] disable compression to give us time to work on a fix --- pkg/agent/config.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/agent/config.go b/pkg/agent/config.go index e413a313..7302700b 100644 --- a/pkg/agent/config.go +++ b/pkg/agent/config.go @@ -301,7 +301,9 @@ func InitAgentCmdFlags(c *cobra.Command, cfg *AgentCmdFlags) { c.PersistentFlags().BoolVar( &cfg.DisableCompression, "disable-compression", - false, + // Compression was disabled after we found that the backend didn't + // support it. See: https://venafi.atlassian.net/browse/VC-37264. + true, "Disables GZIP compression when uploading the data. Useful for debugging purposes or when an intermediate proxy doesn't like compressed data.", ) }