Mercurial > code > home > repos > light9
changeset 1700:e353041b080a
more collector startup grace period
Ignore-this: d58f2064b2aa91404e567b6dd6b65c78
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Thu, 26 Apr 2018 08:23:03 +0000 |
parents | bbe05d5c6a8f |
children | c8779022f557 |
files | light9/collector/collector.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/light9/collector/collector.py Thu Apr 26 08:22:19 2018 +0000 +++ b/light9/collector/collector.py Thu Apr 26 08:23:03 2018 +0000 @@ -103,7 +103,7 @@ 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)