Skip to content

Commit 360f990

Browse files
committed
change timeout to 15s (speed up launching)
1 parent de28369 commit 360f990

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python.d/python_modules/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ def _receive(self):
565565
data = ""
566566
while True:
567567
try:
568-
ready_to_read, _, in_error = select.select([self._sock], [], [], 60)
568+
ready_to_read, _, in_error = select.select([self._sock], [], [], 15)
569569
except Exception as e:
570570
self.debug("SELECT", str(e))
571571
self._disconnect()

0 commit comments

Comments
 (0)