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/03 13:36:19 UTC

incubator-ariatosca git commit: exceptionthread daemon

Repository: incubator-ariatosca
Updated Branches:
  refs/heads/build_fail_poc d5a4a73f2 -> 963c39a32


exceptionthread daemon


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

Branch: refs/heads/build_fail_poc
Commit: 963c39a3241af328cf7927102a283f0aeb5d1498
Parents: d5a4a73
Author: max-orlov <ma...@gigaspaces.com>
Authored: Mon Jul 3 16:36:15 2017 +0300
Committer: max-orlov <ma...@gigaspaces.com>
Committed: Mon Jul 3 16:36:15 2017 +0300

----------------------------------------------------------------------
 aria/utils/threading.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/963c39a3/aria/utils/threading.py
----------------------------------------------------------------------
diff --git a/aria/utils/threading.py b/aria/utils/threading.py
index b9d627a..f5ca302 100644
--- a/aria/utils/threading.py
+++ b/aria/utils/threading.py
@@ -269,6 +269,7 @@ class ExceptionThread(Thread):
     def __init__(self, *args, **kwargs):
         Thread.__init__(self, *args, **kwargs)
         self.exception = None
+        self.daemon = True
 
     def run(self):
         try: