DBZ-3107 Typo fixes

This commit is contained in:
Gunnar Morling 2021-02-22 09:08:32 +01:00
parent a97b86db43
commit 62ad3969c1

View File

@ -1725,7 +1725,7 @@ public void customSnapshotterSkipsTablesOnRestart() throws Exception {
@Test
@FixFor("DBZ-2094")
public void customSnapshotterSkipsTablesOnRestartWithConncurrentTx() throws Exception {
public void customSnapshotterSkipsTablesOnRestartWithConcurrentTx() throws Exception {
final LogInterceptor logInterceptor = new LogInterceptor();
Testing.Print.enable();
@ -1767,7 +1767,7 @@ public void customSnapshotterSkipsTablesOnRestartWithConncurrentTx() throws Exce
.atMost(waitTimeForRecords() * 30, TimeUnit.SECONDS)
.ignoreException(InstanceNotFoundException.class)
.until(() -> {
// Requested due to DBZ-3158, creates empty transaction
// Required due to DBZ-3158, creates empty transaction
TestHelper.create().execute("vacuum full").close();
return (boolean) ManagementFactory.getPlatformMBeanServer()
.getAttribute(getSnapshotMetricsObjectName("postgres", TestHelper.TEST_SERVER), "SnapshotCompleted");