From 3b37170a77f9c6b147af8c95a4e45f259b4d4a8e Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Fri, 6 Dec 2024 12:18:30 +1000 Subject: [PATCH] fix: Update default keep alive time to 150s --- pkg/output/xatu/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/output/xatu/config.go b/pkg/output/xatu/config.go index ff968383..06969fcc 100644 --- a/pkg/output/xatu/config.go +++ b/pkg/output/xatu/config.go @@ -20,7 +20,7 @@ type Config struct { type KeepAliveConfig struct { Enabled *bool `yaml:"enabled" default:"true"` - Time time.Duration `yaml:"time" default:"10s"` + Time time.Duration `yaml:"time" default:"150s"` Timeout time.Duration `yaml:"timeout" default:"30s"` }