Fixed - UnsupportedOperationException is thrown if Spring Data Redis connection executed in pipelined mode. #3021

pull/3048/head
Nikita Koksharov 5 years ago
parent b50bfcc574
commit bf65e2fd6f

@ -1450,6 +1450,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

@ -1507,6 +1507,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

@ -1523,6 +1523,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

@ -1507,6 +1507,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

@ -1542,6 +1542,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

@ -1534,6 +1534,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

@ -1534,6 +1534,10 @@ public class RedissonConnection extends AbstractRedisConnection {
}
protected void filterResults(BatchResult<?> result) {
if (result.getResponses().isEmpty()) {
return;
}
int t = 0;
for (Integer index : indexToRemove) {
index -= t;

Loading…
Cancel
Save