Waiting `INIT` here is dead code in newer versions that don't use `INIT` any longer and leads to nothing being written to the repository in older versions if the snapshot is cancelled at the `INIT` step which then breaks repo consistency checks. Since we have other tests ensuring that snapshot abort works properly we can just remove the wait for `INIT` here and backport this down to 7.8 to fix tests. relates #59140
This commit is contained in:
parent
838f717e5f
commit
cc3c8be0f1
|
@ -144,8 +144,8 @@ public class SLMSnapshotBlockingIntegTests extends AbstractSnapshotIntegTestCase
|
|||
SnapshotLifecyclePolicyItem.SnapshotInProgress inProgress = item.getSnapshotInProgress();
|
||||
assertThat(inProgress.getSnapshotId().getName(), equalTo(snapshotName));
|
||||
assertThat(inProgress.getStartTime(), greaterThan(0L));
|
||||
assertThat(inProgress.getState(), anyOf(equalTo(SnapshotsInProgress.State.INIT), equalTo(SnapshotsInProgress.State.STARTED),
|
||||
equalTo(SnapshotsInProgress.State.SUCCESS)));
|
||||
assertThat(inProgress.getState(),
|
||||
anyOf(equalTo(SnapshotsInProgress.State.STARTED), equalTo(SnapshotsInProgress.State.SUCCESS)));
|
||||
assertNull(inProgress.getFailure());
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue