Skip Menu |

This queue is for tickets about the HTTP-Async CPAN distribution.

Report information
The Basics
Id: 84436
Status: resolved
Priority: 0/
Queue: HTTP-Async

People
Owner: Nobody in particular
Requestors: lingvista [...] email.cz
Cc:
AdminCc:

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



Subject: [PATCH] Incorrect http -> https redirect
Observed behavior: when unsecured address is redirected to a secured one, the package produces an illegal address. Example: http://www.facebook.com is redirected to https://www.facebook.com (when no user is logged in). Package produces an address http://https://www.facebook.com (which is illegal and fails). The problem lies in the method _make_url_absolute(). File Async.pm.patch2 replaces the method's logic by a simple call to URI->new_abs(). Alternatively (to keep the original code in place) file Async.pm.patch3 can be used.
Subject: Async.pm.patch3
Download Async.pm.patch3
application/octet-stream 585b

Message body not shown because it is not plain text.

Subject: Async.pm.patch2
Download Async.pm.patch2
application/octet-stream 714b

Message body not shown because it is not plain text.

Fixed at https://github.com/evdb/HTTP-Async/commit/837331bf8a7096d8acb6f74de5e63d3d420d91c2 Thanks again! HTTP-Async 0.15 will be up on CPAN soon :-)