From 9a1be6f53fae95717591883172607698a5a82318 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(尹文开) --- changelogs/unreleased/7294-ywk253100 | 1 + pkg/cmd/cli/install/install.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelogs/unreleased/7294-ywk253100 diff --git a/changelogs/unreleased/7294-ywk253100 b/changelogs/unreleased/7294-ywk253100 new file mode 100644 index 000000000..a12df3439 --- /dev/null +++ b/changelogs/unreleased/7294-ywk253100 @@ -0,0 +1 @@ +Make "disable-informer-cache" option false(enabled) by default to keep it consistent with the help message \ No newline at end of file diff --git a/pkg/cmd/cli/install/install.go b/pkg/cmd/cli/install/install.go index 5d2ccd28a..1c6772887 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, } }