Skip Menu |

This queue is for tickets about the Perlbal CPAN distribution.

Report information
The Basics
Id: 87206
Status: new
Priority: 0/
Queue: Perlbal

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] wrong return precedence
returns binds stronger than or, so the expressions after or are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: Perlbal-1.80-returnor.patch
diff -bu ./Perlbal-1.80-2A2zNz/t/32-pipelining.t~ ./Perlbal-1.80-2A2zNz/t/32-pipelining.t --- ./Perlbal-1.80-2A2zNz/t/32-pipelining.t~ 2010-12-19 19:24:35.000000000 -0600 +++ ./Perlbal-1.80-2A2zNz/t/32-pipelining.t 2013-07-23 09:58:07.314125483 -0500 @@ -46,7 +46,7 @@ my $sock; my $get_sock = sub { return IO::Socket::INET->new(PeerAddr => "127.0.0.1:$port") - or die "Failed to connect to perlbal"; + || die "Failed to connect to perlbal"; }; $sock = $get_sock->();