We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0a2217 commit c912adcCopy full SHA for c912adc
t/09-conn-errors.t
@@ -262,10 +262,11 @@ sub t_read_timeout {
262
my $cv = shift;
263
264
$redis = AnyEvent::RipeRedis->new(
265
- host => $server_info->{host},
266
- port => $server_info->{port},
267
- reconnect => 0,
268
- read_timeout => 1,
+ host => $server_info->{host},
+ port => $server_info->{port},
+ reconnect => 0,
+ connection_timeout => 6,
269
+ read_timeout => 1,
270
271
on_error => sub {
272
$t_cli_err = shift;
t/test_helper.pl
@@ -38,7 +38,7 @@ sub ev_loop {
38
39
$sub->($cv);
40
41
- my $timer = AE::timer( 10, 0,
+ my $timer = AE::timer( 15, 0,
42
sub {
43
diag( 'Emergency exit from event loop.' );
44
$cv->send;
0 commit comments