Add integration test for re-registration with and without Dynamo DB

This commit is contained in:
Chris Eager
2021-07-27 15:37:30 -05:00
committed by Chris Eager
parent 0b7c3ad745
commit 5c68d83a93
3 changed files with 327 additions and 2 deletions

View File

@@ -37,6 +37,11 @@ public class DynamicAccountsDynamoDbMigrationConfiguration {
return backgroundMigrationExecutorThreads;
}
@VisibleForTesting
public void setBackgroundMigrationEnabled(boolean backgroundMigrationEnabled) {
this.backgroundMigrationEnabled = backgroundMigrationEnabled;
}
public void setDeleteEnabled(boolean deleteEnabled) {
this.deleteEnabled = deleteEnabled;
}
@@ -73,4 +78,14 @@ public class DynamicAccountsDynamoDbMigrationConfiguration {
public int getDynamoCrawlerScanPageSize() {
return dynamoCrawlerScanPageSize;
}
@VisibleForTesting
public void setLogMismatches(boolean logMismatches) {
this.logMismatches = logMismatches;
}
@VisibleForTesting
public void setBackgroundMigrationExecutorThreads(int threads) {
this.backgroundMigrationExecutorThreads = threads;
}
}