Skip to content

Commit

Permalink
feat: Made configure() public
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Aug 25, 2024
1 parent 89311ad commit f7ce88e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class RedisWriterArgs {
@Option(names = "--merge", description = "Merge properties from collection data structures (`hash`, `set`, ...) instead of overwriting them.")
private boolean merge;

protected <K, V, T> void configure(RedisItemWriter<K, V, T> writer) {
public <K, V, T> void configure(RedisItemWriter<K, V, T> writer) {
writer.setMultiExec(multiExec);
writer.setWaitReplicas(waitReplicas);
writer.setWaitTimeout(waitTimeout);
Expand Down

0 comments on commit f7ce88e

Please sign in to comment.