[ci] Mark SqlServerConnectorIT restartInMiddleOfTx* tests Flaky

This commit is contained in:
Chris Cranford 2024-03-16 08:50:43 -04:00 committed by Jiri Pechanec
parent e26d3efedc
commit fa482da850

View File

@ -1947,18 +1947,21 @@ private void restartInTheMiddleOfTx(boolean restartJustAfterSnapshot, boolean af
@Test
@FixFor("DBZ-1128")
@Flaky("DBZ-7655")
public void restartInTheMiddleOfTxAfterSnapshot() throws Exception {
restartInTheMiddleOfTx(true, false);
}
@Test
@FixFor("DBZ-1128")
@Flaky("DBZ-7655")
public void restartInTheMiddleOfTxAfterCompletedTx() throws Exception {
restartInTheMiddleOfTx(false, true);
}
@Test
@FixFor("DBZ-1128")
@Flaky("DBZ-7655")
public void restartInTheMiddleOfTx() throws Exception {
restartInTheMiddleOfTx(false, false);
}