From 7c25916dd2a4e43b52aea145c8a7ecd057f33403 Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Fri, 30 May 2025 13:31:31 -0700 Subject: [PATCH] disable watchdog by default --- 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 {