31
31
import java .util .function .Function ;
32
32
33
33
import org .junit .jupiter .api .BeforeEach ;
34
+ import org .junit .jupiter .api .Disabled ;
34
35
35
36
import org .springframework .dao .InvalidDataAccessApiUsageException ;
36
37
import org .springframework .data .redis .ObjectFactory ;
@@ -464,6 +465,7 @@ void shouldApplyCustomSerializationContextToHash() {
464
465
465
466
@ ParameterizedRedisTest // DATAREDIS-612
466
467
@ EnabledIfLongRunningTest
468
+ @ Disabled ("Caused often CancellationException: Disconnected" )
467
469
void listenToChannelShouldReceiveChannelMessagesCorrectly () throws InterruptedException {
468
470
469
471
String channel = "my-channel" ;
@@ -486,6 +488,7 @@ void listenToChannelShouldReceiveChannelMessagesCorrectly() throws InterruptedEx
486
488
487
489
@ ParameterizedRedisTest // GH-1622
488
490
@ EnabledIfLongRunningTest
491
+ @ Disabled ("Caused often CancellationException: Disconnected" )
489
492
void listenToLaterChannelShouldReceiveChannelMessagesCorrectly () {
490
493
491
494
String channel = "my-channel" ;
@@ -508,7 +511,7 @@ void listenToLaterChannelShouldReceiveChannelMessagesCorrectly() {
508
511
}
509
512
510
513
@ ParameterizedRedisTest // DATAREDIS-612
511
- @ EnabledIfLongRunningTest
514
+ @ Disabled ( "Caused often CancellationException: Disconnected" )
512
515
void listenToPatternShouldReceiveChannelMessagesCorrectly () {
513
516
514
517
String channel = "my-channel" ;
@@ -533,7 +536,7 @@ void listenToPatternShouldReceiveChannelMessagesCorrectly() {
533
536
}
534
537
535
538
@ ParameterizedRedisTest // GH-1622
536
- @ EnabledIfLongRunningTest
539
+ @ Disabled ( "Caused often CancellationException: Disconnected" )
537
540
void listenToPatternLaterShouldReceiveChannelMessagesCorrectly () {
538
541
539
542
String channel = "my-channel" ;
0 commit comments