From 398a4b9efcfc8d60e24050f3912bf9f11eff5bd1 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:04:21 -0700 Subject: [PATCH] disable watchdog by default (#1759) --- config/configStructs/tapConfig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/configStructs/tapConfig.go b/config/configStructs/tapConfig.go index c9e6f1a2f..1251e8e99 100644 --- a/config/configStructs/tapConfig.go +++ b/config/configStructs/tapConfig.go @@ -224,7 +224,7 @@ type SentryConfig struct { } type WatchdogConfig struct { - Enabled bool `yaml:"enabled" json:"enabled" default:"true"` + Enabled bool `yaml:"enabled" json:"enabled" default:"false"` } type GitopsConfig struct {