Skip Menu |

This queue is for tickets about the Net-FTP-Throttle CPAN distribution.

Report information
The Basics
Id: 18905
Status: resolved
Priority: 0/
Queue: Net-FTP-Throttle

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: subsecond sleep should be avoided; use select instead
using sleep with values < 1 is unreliable plus mixing sleep and alarm doesn't work well, so users can't reliably use alarm when using this module. the following is the way to do it properly select(undef, undef, undef, 0.1)