5 Jun
2023
5 Jun
'23
1:46 p.m.
sub socket_init { &logs("Opening connection to swoole\n"); my $swoole = new IO::Socket::INET ( PeerAddr => '127.0.0.1', PeerPort => '26312', Proto => 'tcp' );
Try to set a timeout here, could be you're not getting a connection fast enough. In general try to find out which part takes so long to execute. --- Ludo