File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
packages/client/lib/client Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -871,9 +871,12 @@ describe('Client', () => {
871
871
} finally {
872
872
await subscriber . disconnect ( ) ;
873
873
}
874
- } , GLOBAL . SERVERS . OPEN ) ;
874
+ } , {
875
+ ...GLOBAL . SERVERS . OPEN ,
876
+ minimumDockerVersion : [ 7 ]
877
+ } ) ;
875
878
876
- testUtils . testWithClient ( 'should be able to handle errors in SUBSCRIBE' , async publisher => {
879
+ testUtils . testWithClient ( 'should handle errors in SUBSCRIBE' , async publisher => {
877
880
const subscriber = publisher . duplicate ( ) ;
878
881
879
882
await subscriber . connect ( ) ;
@@ -907,7 +910,8 @@ describe('Client', () => {
907
910
}
908
911
} , {
909
912
// this test change ACL rules, running in isolated server
910
- serverArguments : [ ]
913
+ serverArguments : [ ] ,
914
+ minimumDockerVersion : [ 6 , 2 ] // ACL PubSub rules were added in Redis 6.2
911
915
} ) ;
912
916
} ) ;
913
917
You can’t perform that action at this time.
0 commit comments