Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the WebService-Rackspace-CloudFiles CPAN distribution.

Report information
The Basics
Id: 87213
Status: resolved
Priority: 0/
Queue: WebService-Rackspace-CloudFiles

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: WebService-Rackspace-CloudFiles-1.09-returnor.patch
diff -bu WebService-Rackspace-CloudFiles-1.09-JSvaai/lib/WebService/Rackspace/CloudFiles.pm~ WebService-Rackspace-CloudFiles-1.09-JSvaai/lib/WebService/Rackspace/CloudFiles.pm --- WebService-Rackspace-CloudFiles-1.09-JSvaai/lib/WebService/Rackspace/CloudFiles.pm~ 2013-07-17 10:20:57.000000000 -0500 +++ WebService-Rackspace-CloudFiles-1.09-JSvaai/lib/WebService/Rackspace/CloudFiles.pm 2013-07-23 12:47:29.039280343 -0500 @@ -42,7 +42,7 @@ default => sub { my $self = shift; - return $self->locations->{$self->location} or + return $self->locations->{$self->location} || confess "location $self->{location} unknown: valid locations are " . join ', ', $self->location_names ; },