Compare versioned profiles synchronously; log a subset of mismatches for further investigation

This commit is contained in:
Jon Chambers
2021-11-30 15:07:20 -05:00
committed by Chris Eager
parent 795b226b90
commit d89b4f7e95
6 changed files with 19 additions and 15 deletions

View File

@@ -21,6 +21,9 @@ public class DynamicProfileMigrationConfiguration {
@JsonProperty
private boolean dynamoDbReadPrimary = false;
@JsonProperty
private boolean logMismatches = false;
public boolean isDynamoDbDeleteEnabled() {
return dynamoDbDeleteEnabled;
}
@@ -36,4 +39,8 @@ public class DynamicProfileMigrationConfiguration {
public boolean isDynamoDbReadPrimary() {
return dynamoDbReadPrimary;
}
public boolean isLogMismatches() {
return logMismatches;
}
}