From 1d1ec578adaaae8cfd1a6a77e4f6380468855c79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wenkai=20Yin=28=E5=B0=B9=E6=96=87=E5=BC=80=29?= Date: Wed, 10 Jan 2024 09:45:57 +0800 Subject: [PATCH] Make "disable-informer-cache" option false(enabled) by default to keep it consistent with the help message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Make "disable-informer-cache" option false(enabled) by default to keep it consi stent with the help message Fixes #7264 Signed-off-by: Wenkai Yin(尹文开) --- pkg/cmd/cli/install/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/cli/install/install.go b/pkg/cmd/cli/install/install.go index 5d2ccd28a5f..1c6772887c5 100644 --- a/pkg/cmd/cli/install/install.go +++ b/pkg/cmd/cli/install/install.go @@ -155,7 +155,7 @@ func NewInstallOptions() *Options { DefaultVolumesToFsBackup: false, UploaderType: uploader.KopiaType, DefaultSnapshotMoveData: false, - DisableInformerCache: true, + DisableInformerCache: false, ScheduleSkipImmediately: false, } }