From: paulfantom Date: Tue, 19 Jul 2016 01:05:50 +0000 (+0200) Subject: change timeout to 15s (speed up launching) X-Git-Tag: v1.3.0~55^2~3 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netdata.git;a=commitdiff_plain;h=360f990db4e3faa87f6d0f367b879a51273b7aa0 change timeout to 15s (speed up launching) --- diff --git a/python.d/python_modules/base.py b/python.d/python_modules/base.py index 0a4653c6..e8639671 100644 --- a/python.d/python_modules/base.py +++ b/python.d/python_modules/base.py @@ -565,7 +565,7 @@ class SocketService(SimpleService): data = "" while True: try: - ready_to_read, _, in_error = select.select([self._sock], [], [], 60) + ready_to_read, _, in_error = select.select([self._sock], [], [], 15) except Exception as e: self.debug("SELECT", str(e)) self._disconnect()