From dedebf5607d4de749639a2acc555eaae891c6517 Mon Sep 17 00:00:00 2001 From: Kirill Sibirev Date: Fri, 10 Jan 2025 15:49:46 +0100 Subject: [PATCH] Check use_imaginary_chunk_locations in test --- test/e2e/ytsaurus_controller_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/e2e/ytsaurus_controller_test.go b/test/e2e/ytsaurus_controller_test.go index cf3b3978..f4743a6f 100644 --- a/test/e2e/ytsaurus_controller_test.go +++ b/test/e2e/ytsaurus_controller_test.go @@ -297,6 +297,7 @@ var _ = Describe("Basic e2e test for Ytsaurus controller", Label("e2e"), func() By("Waiting cluster update completes") EventuallyYtsaurus(ctx, ytsaurus, upgradeTimeout).Should(HaveClusterStateRunning()) checkClusterBaseViability(ytClient) + checkChunkLocations(ytClient) podsAfterFullUpdate := getComponentPods(ctx, namespace) pods := getChangedPods(podsBeforeUpdate, podsAfterFullUpdate) @@ -1032,8 +1033,6 @@ func checkClusterBaseViability(ytClient yt.Client) { res := make([]string, 0) Expect(ytClient.ListNode(ctx, ypath.Path("/"), &res, nil)).Should(Succeed()) - checkChunkLocations(ytClient) - By("Check that tablet cell bundles are in `good` health") Eventually(func() bool { notGoodBundles, err := components.GetNotGoodTabletCellBundles(ctx, ytClient)