File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for AnyEvent::RipeRedis.
2
2
3
+ 0.44 Fri Dec 1 12:09:02 MSK 2017
4
+ - Made that the client do not reconnects on the error
5
+ "Client sent AUTH, but no password is set".
6
+
3
7
0.42 Sat Apr 1 15:49:15 MSK 2017
4
8
- README.pod replaced by README.md.
5
9
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use strict;
5
5
use warnings;
6
6
use base qw( Exporter ) ;
7
7
8
- our $VERSION = ' 0.42 ' ;
8
+ our $VERSION = ' 0.44 ' ;
9
9
10
10
use AnyEvent::RipeRedis::Error;
11
11
@@ -646,7 +646,9 @@ sub _auth {
646
646
on_reply => sub {
647
647
my $err = $_ [1];
648
648
649
- if ( defined $err ) {
649
+ if ( defined $err
650
+ && $err -> message ne ' ERR Client sent AUTH, but no password is set' )
651
+ {
650
652
$self -> {_auth_state } = S_NEED_DO;
651
653
$self -> _abort($err );
652
654
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use 5.008000;
4
4
use strict;
5
5
use warnings;
6
6
7
- our $VERSION = ' 0.42 ' ;
7
+ our $VERSION = ' 0.44 ' ;
8
8
9
9
our %ERROR_CODES = (
10
10
E_CANT_CONN => 1,
You can’t perform that action at this time.
0 commit comments