Skip to content

Commit ea3f4a6

Browse files
committed
Disable ReactiveRedisStreamMessageHandlerTests.testMessageWithListPayload
The latest Spring Data Redis comes with a regression, so the data stored as a list in the Redis Stream is not deserialized properly.
1 parent 911ddd3 commit ea3f4a6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spring-integration-redis/src/test/java/org/springframework/integration/redis/outbound/ReactiveRedisStreamMessageHandlerTests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@
1616

1717
package org.springframework.integration.redis.outbound;
1818

19+
import java.util.ArrayList;
1920
import java.util.Arrays;
2021
import java.util.List;
2122

2223
import org.junit.jupiter.api.BeforeEach;
24+
import org.junit.jupiter.api.Disabled;
2325
import org.junit.jupiter.api.Test;
2426

2527
import org.springframework.beans.factory.annotation.Autowired;
@@ -98,6 +100,7 @@ void testIntegrationStreamOutbound() {
98100
}
99101

100102
@Test
103+
@Disabled("Until Spring Data fixes conversion to List")
101104
void testMessageWithListPayload() {
102105
List<String> messagePayload = Arrays.asList("Hello", "stream", "message");
103106
this.handlerAdapter.handleMessage(new GenericMessage<>(messagePayload));

0 commit comments

Comments
 (0)