Skip to content

Commit

Permalink
IO::Socket::INET takes listen as Bool, not Int.
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Apr 20, 2017
1 parent 96144ab commit 0fead14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SCGI.pm6
Expand Up @@ -24,7 +24,7 @@ method connect (:$port=$.port, :$addr=$.addr)
$!socket = IO::Socket::INET.new(
:localhost($addr),
:localport($port),
:listen(1)
:listen
);
}

Expand Down

0 comments on commit 0fead14

Please sign in to comment.