Use the async dynamo client to batch uak updates

This commit is contained in:
Ravi Khadiwala
2022-03-09 23:28:55 -06:00
committed by ravi-signal
parent de68c251f8
commit 5a88ff0811
9 changed files with 190 additions and 73 deletions

View File

@@ -6,7 +6,14 @@ public class DynamicUakMigrationConfiguration {
@JsonProperty
private boolean enabled = true;
@JsonProperty
private int maxOutstandingNormalizes = 25;
public boolean isEnabled() {
return enabled;
}
public int getMaxOutstandingNormalizes() {
return maxOutstandingNormalizes;
}
}