Skip to content

Commit

Permalink
reduce log
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Mar 26, 2024
1 parent 2304be5 commit e95d9d9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class R2dbcMigrateProperties {
private boolean enable = true;
private long connectionMaxRetries = 500;
private List<BunchOfResourcesEntry> resources;
private List<BunchOfResourcesEntry> resources = new ArrayList<>();
private int chunkSize = 1000;
private Dialect dialect;
private String validationQuery = "select '42' as validation_result";
Expand Down Expand Up @@ -178,7 +179,7 @@ public String toString() {
return "R2dbcMigrateProperties{" +
"enable=" + enable +
", connectionMaxRetries=" + connectionMaxRetries +
", resources=" + resources +
", resources.size=" + resources.size() +
", chunkSize=" + chunkSize +
", dialect=" + dialect +
", validationQuery='" + validationQuery + '\'' +
Expand Down

0 comments on commit e95d9d9

Please sign in to comment.