Re: [perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-04 Thread Simon Proctor via RT
There are also issues with libssl (which I think the IO::Socket::SSL module calls using Native Call) and threads. At the moment the only threads safe https client is the Cro one, I believe. Sorry I can't be more help, 2am insomnia should really be sleeping. On Wed, 4 Apr 2018, 2:30 am Simon Proc

Re: [perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-04 Thread Simon Proctor via RT
Looks to me like one of the sites is redirecting to an https page and you don't have IO::Socket::SSL installed. On Wed, 4 Apr 2018, 1:42 am brian d foy, wrote: > # New Ticket Created by "brian d foy" > # Please include the string: [perl #133057] > # in the subject line of all future correspo

Re: [perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-03 Thread brian d foy
The error message isn't useful because you get that no matter what happens. It's really the IO::Socket::SSL is not thread safe. But, I'd not expect a segfault.

Re: [perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-03 Thread brian d foy via RT
The error message isn't useful because you get that no matter what happens. It's really the IO::Socket::SSL is not thread safe. But, I'd not expect a segfault.

Re: [perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-03 Thread Simon Proctor
There are also issues with libssl (which I think the IO::Socket::SSL module calls using Native Call) and threads. At the moment the only threads safe https client is the Cro one, I believe. Sorry I can't be more help, 2am insomnia should really be sleeping. On Wed, 4 Apr 2018, 2:30 am Simon Proc

Re: [perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-03 Thread Simon Proctor
Looks to me like one of the sites is redirecting to an https page and you don't have IO::Socket::SSL installed. On Wed, 4 Apr 2018, 1:42 am brian d foy, wrote: > # New Ticket Created by "brian d foy" > # Please include the string: [perl #133057] > # in the subject line of all future correspo

[perl #133057] Odd interaction of HTTP::UserAgent and Promises

2018-04-03 Thread brian d foy
# New Ticket Created by "brian d foy" # Please include the string: [perl #133057] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=133057 > I have this little program where I want to fetch web thingys concurrently. There's a pro