Skip to content

Commit

Permalink
Turn off disk manager tests influenced by StatVolume (#2979)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rattysed authored Feb 5, 2025
1 parent 75c596b commit 2a57ef4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,9 @@ func TestSnapshotServiceDeleteSnapshotWhenCreationIsInFlight(t *testing.T) {

// Should wait here because checkpoint is deleted on |createOp| operation
// cancel (and exact time of this event is unknown).
testcommon.WaitForCheckpointsAreEmpty(t, ctx, diskID)
// TODO: enable this check after resolving issue
// https://github.com/ydb-platform/nbs/issues/2008.
// testcommon.WaitForCheckpointsAreEmpty(t, ctx, diskID)

testcommon.CheckConsistency(t, ctx)
}
4 changes: 3 additions & 1 deletion cloud/disk_manager/internal/pkg/facade/testcommon/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,9 @@ func RequireCheckpointsAreEmpty(
ctx context.Context,
diskID string,
) {

// TODO: enable this method after resolving this issue
// https://github.com/ydb-platform/nbs/issues/2008.
return
nbsClient := NewNbsTestingClient(t, ctx, "zone-a")
checkpoints, err := nbsClient.GetCheckpoints(ctx, diskID)
require.NoError(t, err)
Expand Down

0 comments on commit 2a57ef4

Please sign in to comment.