From 737746998883171b93ffcbe7b45a2ede13fac8ad Mon Sep 17 00:00:00 2001 From: Peter Giacomo Lombardo Date: Thu, 3 Oct 2019 10:45:32 +0200 Subject: [PATCH] Lower agent lookup time from boot --- instana/fsm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instana/fsm.py b/instana/fsm.py index 399c0187..62149887 100644 --- a/instana/fsm.py +++ b/instana/fsm.py @@ -70,7 +70,7 @@ def __init__(self, agent): "onpending": self.agent.start, "onready": self.on_ready}}) - self.timer = t.Timer(5, self.fsm.lookup) + self.timer = t.Timer(1, self.fsm.lookup) self.timer.daemon = True self.timer.name = self.THREAD_NAME self.timer.start()