You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ariatosca.apache.org by mx...@apache.org on 2017/07/09 08:32:02 UTC

incubator-ariatosca git commit: no longer waiting 5 secs in thread closing

Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-299-Resuming-canceled-execution-with-frozen-task-fails a8b4dce2a -> 770f161a1


no longer waiting 5 secs in thread closing


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/770f161a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/770f161a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/770f161a

Branch: refs/heads/ARIA-299-Resuming-canceled-execution-with-frozen-task-fails
Commit: 770f161a187387b15da0d979c9024442515b5f28
Parents: a8b4dce
Author: max-orlov <ma...@gigaspaces.com>
Authored: Sun Jul 9 11:31:57 2017 +0300
Committer: max-orlov <ma...@gigaspaces.com>
Committed: Sun Jul 9 11:31:57 2017 +0300

----------------------------------------------------------------------
 aria/orchestrator/workflows/executor/thread.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/770f161a/aria/orchestrator/workflows/executor/thread.py
----------------------------------------------------------------------
diff --git a/aria/orchestrator/workflows/executor/thread.py b/aria/orchestrator/workflows/executor/thread.py
index 6feef0c..d9dcdf8 100644
--- a/aria/orchestrator/workflows/executor/thread.py
+++ b/aria/orchestrator/workflows/executor/thread.py
@@ -54,7 +54,7 @@ class ThreadExecutor(BaseExecutor):
     def close(self):
         self._stopped = True
         for thread in self._pool:
-            thread.join(5)
+            thread.join()
 
     def _processor(self):
         while not self._stopped: