From 7a790489f2fdef4448d7e19db83c29bf81f6ed25 Mon Sep 17 00:00:00 2001 From: Colombo Date: Wed, 19 Feb 2020 22:09:45 +0400 Subject: [PATCH] fix SubprocessorBase.py --- core/joblib/SubprocessorBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/joblib/SubprocessorBase.py b/core/joblib/SubprocessorBase.py index 0c72516..a7213f9 100644 --- a/core/joblib/SubprocessorBase.py +++ b/core/joblib/SubprocessorBase.py @@ -289,7 +289,7 @@ class Subprocessor(object): terminate_it = True break - if self.no_response_time_sec != 0 and (time.time() - cli.sent_time) > self.no_response_time_sec: + if (time.time() - cli.sent_time) > 30: terminate_it = True if terminate_it: