fix placing of KILL_DELAY constant and turn it to 1/10th of a second instead of 1/100/th
This commit is contained in:
parent
9b66368040
commit
151126e70c
|
@ -56,7 +56,6 @@ use bytes;
|
|||
|
||||
# in useconds, not seconds.
|
||||
use constant MAX_CONNECT_DELAY => 10*1000*1000;
|
||||
use constant KILL_DELAY => 10*1000; # 1/10th of a second
|
||||
|
||||
# ==========================================================================
|
||||
#
|
||||
|
@ -223,6 +222,8 @@ use IO::Handle;
|
|||
use Time::HiRes qw(usleep);
|
||||
#use Data::Dumper;
|
||||
|
||||
use constant KILL_DELAY => 100*1000; # 1/10th of a second
|
||||
|
||||
our %cmd_hash;
|
||||
our %pid_hash;
|
||||
|
||||
|
|
Loading…
Reference in New Issue