# New Ticket Created by mt1957
# Please include the string: [perl #128289]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=128289 >
Hi,
A subtle problem. Golfed down to;
my IO::Socket::INET $sock;
$sock .= new( :host<localhost>, :port(65010));
Error thrown
Failed to connect: connection refused
in block <unit> at Tests/sock.pl6 line 8
* On my laptop it works without error as well as on Travis-ci. On
another system with the same linux distribution and version, it
gives the above error.
* On both systems localhost translates to 127.0.0.1 (checked with dig)
* The firewall is not blocking, checked by turning it off.
* On the system with the error I've changed 'localhost' into 127.0.0.1
after which no error is thrown.
perl version on systems are 2016.05-31-g0873fd7 (on ok system) and
2016.05-25-gc5dfd77. On other curious thing is both systems say that
they are `Already up-to-date` using git pull while versions differ.