Skip Menu |

This queue is for tickets about the Protocol-CassandraCQL CPAN distribution.

Report information
The Basics
Id: 88926
Status: resolved
Priority: 0/
Queue: Protocol-CassandraCQL

People
Owner: Nobody in particular
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in:
  • 0.08
  • 0.11
Fixed in: 0.12



Subject: tests hang on Windows
Windows XP 32-bit, Strawberry perl 5.18.0 with 64-bit integers. 10client.t Cannot connect to test server - Требуемый адрес для своего контекста неверен. at t/10client.t line 46. (hangs) Message in Russian means "Required address is invalid for its context". -- Alexandr Ciornii, http://chorny.net
On Tue Sep 24 04:17:37 2013, CHORNY wrote: Show quoted text
> Windows XP 32-bit, Strawberry perl 5.18.0 with 64-bit integers. > > 10client.t > Cannot connect to test server - Требуемый адрес для своего контекста > неверен. at t/10client.t line 46. > (hangs) > > Message in Russian means "Required address is invalid for its > context".
Oops. Try explicitly adding LocalHost => "127.0.0.1" to the IO::Socket::INET constructor: my $test_server = IO::Socket::INET->new( LocalHost => "127.0.0.1", LocalPort => 0, Listen => 1, ) or die "Cannot listen - $@"; If that works I'll pop it in the next version. -- Paul Evans
On Mon Feb 10 09:00:08 2014, PEVANS wrote: Show quoted text
> On Tue Sep 24 04:17:37 2013, CHORNY wrote:
> > Windows XP 32-bit, Strawberry perl 5.18.0 with 64-bit integers.
Show quoted text
> Oops. Try explicitly adding LocalHost => "127.0.0.1" to the > IO::Socket::INET constructor:
Show quoted text
> If that works I'll pop it in the next version.
yes, it works -- Alexandr Ciornii, http://chorny.net