Add dynamic configuration for doing a mismatch post-check

This commit is contained in:
Chris Eager
2021-09-13 13:31:29 -07:00
committed by Chris Eager
parent a51a7a0901
commit 894297efa9
3 changed files with 16 additions and 1 deletions

View File

@@ -20,6 +20,9 @@ public class DynamicAccountsDynamoDbMigrationConfiguration {
@JsonProperty
boolean readEnabled;
@JsonProperty
boolean postCheckMismatches;
@JsonProperty
boolean logMismatches;
@@ -70,6 +73,10 @@ public class DynamicAccountsDynamoDbMigrationConfiguration {
return readEnabled;
}
public boolean isPostCheckMismatches() {
return postCheckMismatches;
}
public boolean isLogMismatches() {
return logMismatches;
}