From 754e71f0a97710b7c74a263c0658dbc01f5e74ea Mon Sep 17 00:00:00 2001 From: Kirill Sibirev Date: Wed, 17 Apr 2024 12:02:33 +0200 Subject: [PATCH] Removed second full update check --- pkg/components/ytsaurus_client.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/components/ytsaurus_client.go b/pkg/components/ytsaurus_client.go index 0ee7f31f..deb92b45 100644 --- a/pkg/components/ytsaurus_client.go +++ b/pkg/components/ytsaurus_client.go @@ -413,10 +413,6 @@ func (yc *YtsaurusClient) GetYtClient() yt.Client { } func (yc *YtsaurusClient) HandlePossibilityCheck(ctx context.Context) (ok bool, msg string, err error) { - if !yc.ytsaurus.GetResource().Spec.EnableFullUpdate { - return false, "Full update is not enabled", nil - } - // Check tablet cell bundles. notGoodBundles, err := GetNotGoodTabletCellBundles(ctx, yc.ytClient) if err != nil {