File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for AnyEvent::RipeRedis.
2
2
3
+ 0.32 Thu Dec 29 15:16:05 MSK 2016
4
+ - Weakened one more circular reference.
5
+ - Fixed typo in POD.
6
+
3
7
0.30 Sun Nov 20 19:40:55 MSK 2016
4
8
- Fixes in POD.
5
9
- Fixes in tests.
Original file line number Diff line number Diff line change 1
- AnyEvent-RipeRedis version 0.30
1
+ AnyEvent-RipeRedis version 0.32
2
2
======================
3
3
4
4
INSTALLATION
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.30 ' ;
8
+ our $VERSION = ' 0.32 ' ;
9
9
10
10
use AnyEvent::RipeRedis::Error;
11
11
@@ -564,6 +564,8 @@ sub _execute {
564
564
&& $self -> {reconnect_interval } > 0 )
565
565
{
566
566
unless ( defined $self -> {_reconnect_timer } ) {
567
+ weaken($self );
568
+
567
569
$self -> {_reconnect_timer } = AE::timer(
568
570
$self -> {reconnect_interval }, 0,
569
571
sub {
@@ -1181,7 +1183,7 @@ Specifies L<AnyEvent::Handle> parameters.
1181
1183
linger => 60,
1182
1184
}
1183
1185
1184
- Enabling of the C<autocork > parameter can improve perfomance . See
1186
+ Enabling of the C<autocork > parameter can improve performance . See
1185
1187
documentation on L<AnyEvent::Handle> for more information.
1186
1188
1187
1189
=item on_connect => $cb->()
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.30 ' ;
7
+ our $VERSION = ' 0.32 ' ;
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