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:
Isaac Connor 2017-04-28 11:43:36 -04:00
parent 9b66368040
commit 151126e70c
1 changed files with 2 additions and 1 deletions

View File

@ -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;