Skip to content

Commit dd237c8

Browse files
authored
Lower agent lookup time from boot (#189)
1 parent 11409a6 commit dd237c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instana/fsm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(self, agent):
7070
"onpending": self.agent.start,
7171
"onready": self.on_ready}})
7272

73-
self.timer = t.Timer(5, self.fsm.lookup)
73+
self.timer = t.Timer(1, self.fsm.lookup)
7474
self.timer.daemon = True
7575
self.timer.name = self.THREAD_NAME
7676
self.timer.start()

0 commit comments

Comments
 (0)