Re: Axel Beckert
> I wonder if we should generally ignore negative values here (might
> hide some "wrong time" issues, but then again they should reported by
> another check) or just accept tiny negative values?

The check was introduced in 2013 by 8fca9ab199:

-} elsif ($last_update >= 1.5) {
+} elsif ($last_update >= 1.5 or $last_update < 0) {
     $updatecolor = 'yellow';

The value is coming directly from perl's -M operator, so I don't see
how the code can/should be fixed and we should probably just ignore
the issue by using "or $last_update < -0.1".

Christoph

Reply via email to