# HG changeset patch # User Drew Perttula # Date 2018-04-26 08:23:03 # Node ID e353041b080a6c4293e1d59a0b6dbf510949471d # Parent bbe05d5c6a8f33a77b64fc79d7219f01ec2bef95 more collector startup grace period Ignore-this: d58f2064b2aa91404e567b6dd6b65c78 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)