Has anyone had any success with Radiator 3.7.1 on RedHat Enterprise 3 ?  I can't seem to get Net::Daemon to compile and test without failing the forkm test.   I went ahead and installed it anyway, but radiator is failing with no reason given, even at trace level 9.  One can only assume that this is related.
 
On another note, I can't remember if I mentioned this before or not, but LogSQL seems to have some non-functional code in it:
around about line 54 of LogSQL.pm, it reads:
    # Catch recursion
   return if $in_log++; 
 
which I think should always evaluate as true.   It seems to work better reading something more like:
    # Catch recursion
   return if $in_log > 1;      
    $in_log++; 
which I believe will prevent the recursion that is mentioned in the comment.
 
Jacob Leaver
ReachONE Internet

Reply via email to