Skip to content

Commit

Permalink
Merge pull request apache#6682 from casidiablo/redis-io-fix-finish
Browse files Browse the repository at this point in the history
[BEAM-5734] RedisIO: only call Jedis.exec() on finishBundle if there is something to send
  • Loading branch information
jbonofre authored Nov 26, 2018
2 parents 7eba171 + 8341312 commit 658630d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void testBulkRead() throws Exception {
@Test
public void testWriteReadUsingDefaultAppendMethod() throws Exception {
ArrayList<KV<String, String>> data = new ArrayList<>();
for (int i = 0; i < 100; i++) {
for (int i = 0; i < 8000; i++) {
KV<String, String> kv = KV.of("key " + i, "value " + i);
data.add(kv);
}
Expand Down

0 comments on commit 658630d

Please sign in to comment.