Skip to content

Commit 6f6d658

Browse files
committed
Weakened one more circular reference. Fixed typo in POD
1 parent 44abde3 commit 6f6d658

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Revision history for AnyEvent::RipeRedis.
22

3+
0.32 Thu Dec 29 15:16:05 MSK 2016
4+
- Weakened one more circular reference.
5+
- Fixed typo in POD.
6+
37
0.30 Sun Nov 20 19:40:55 MSK 2016
48
- Fixes in POD.
59
- Fixes in tests.

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AnyEvent-RipeRedis version 0.30
1+
AnyEvent-RipeRedis version 0.32
22
======================
33

44
INSTALLATION

lib/AnyEvent/RipeRedis.pm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use base qw( Exporter );
77

8-
our $VERSION = '0.30';
8+
our $VERSION = '0.32';
99

1010
use AnyEvent::RipeRedis::Error;
1111

@@ -564,6 +564,8 @@ sub _execute {
564564
&& $self->{reconnect_interval} > 0 )
565565
{
566566
unless ( defined $self->{_reconnect_timer} ) {
567+
weaken($self);
568+
567569
$self->{_reconnect_timer} = AE::timer(
568570
$self->{reconnect_interval}, 0,
569571
sub {
@@ -1181,7 +1183,7 @@ Specifies L<AnyEvent::Handle> parameters.
11811183
linger => 60,
11821184
}
11831185
1184-
Enabling of the C<autocork> parameter can improve perfomance. See
1186+
Enabling of the C<autocork> parameter can improve performance. See
11851187
documentation on L<AnyEvent::Handle> for more information.
11861188
11871189
=item on_connect => $cb->()

lib/AnyEvent/RipeRedis/Error.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.008000;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.30';
7+
our $VERSION = '0.32';
88

99
our %ERROR_CODES = (
1010
E_CANT_CONN => 1,

0 commit comments

Comments
 (0)