diff --git a/light9/collector/collector.py b/light9/collector/collector.py --- a/light9/collector/collector.py +++ b/light9/collector/collector.py @@ -103,7 +103,7 @@ class Collector(Generic[ClientType, Clie def _warnOnLateRequests(self, client, now, sendTime): requestLag = now - sendTime - if requestLag > .1 and now > self.initTime + 5: + if requestLag > .1 and now > self.initTime + 10: log.warn('collector.setAttrs from %s is running %.1fms after the request was made', client, requestLag * 1000)