Repository: incubator-ariatosca Updated Branches: refs/heads/build_fail_poc 887913d04 -> d863a938b
set thread.daemon to True in ctx_proxy server Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/d863a938 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/d863a938 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/d863a938 Branch: refs/heads/build_fail_poc Commit: d863a938b2d2427110e7bb1ff3e9dd561ce326ca Parents: 887913d Author: max-orlov <[email protected]> Authored: Mon Jul 3 12:55:08 2017 +0300 Committer: max-orlov <[email protected]> Committed: Mon Jul 3 12:55:08 2017 +0300 ---------------------------------------------------------------------- aria/orchestrator/execution_plugin/ctx_proxy/server.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/d863a938/aria/orchestrator/execution_plugin/ctx_proxy/server.py ---------------------------------------------------------------------- diff --git a/aria/orchestrator/execution_plugin/ctx_proxy/server.py b/aria/orchestrator/execution_plugin/ctx_proxy/server.py index 0a2a606..ca910e0 100644 --- a/aria/orchestrator/execution_plugin/ctx_proxy/server.py +++ b/aria/orchestrator/execution_plugin/ctx_proxy/server.py @@ -102,6 +102,7 @@ class CtxProxy(object): quiet=True, server=BottleServerAdapter) thread = threading.Thread(target=serve) + thread.daemon = True thread.start() return thread
