Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 33A2F200CBA for ; Mon, 3 Jul 2017 11:55:21 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 321C5160BEC; Mon, 3 Jul 2017 09:55:21 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 77AF9160BE4 for ; Mon, 3 Jul 2017 11:55:20 +0200 (CEST) Received: (qmail 61174 invoked by uid 500); 3 Jul 2017 09:55:19 -0000 Mailing-List: contact commits-help@ariatosca.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ariatosca.incubator.apache.org Delivered-To: mailing list commits@ariatosca.incubator.apache.org Received: (qmail 61165 invoked by uid 99); 3 Jul 2017 09:55:19 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jul 2017 09:55:19 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 51ECF181819 for ; Mon, 3 Jul 2017 09:55:19 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.221 X-Spam-Level: X-Spam-Status: No, score=-4.221 tagged_above=-999 required=6.31 tests=[HK_RANDOM_FROM=0.001, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id DMCOCFlpzCHl for ; Mon, 3 Jul 2017 09:55:18 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id 314895FC9D for ; Mon, 3 Jul 2017 09:55:18 +0000 (UTC) Received: (qmail 60902 invoked by uid 99); 3 Jul 2017 09:55:12 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jul 2017 09:55:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3ED2FE037F; Mon, 3 Jul 2017 09:55:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mxmrlv@apache.org To: commits@ariatosca.incubator.apache.org Message-Id: <12a602625aa64b3882314682a5d001a3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-ariatosca git commit: set thread.daemon to True in ctx_proxy server Date: Mon, 3 Jul 2017 09:55:12 +0000 (UTC) archived-at: Mon, 03 Jul 2017 09:55:21 -0000 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 Authored: Mon Jul 3 12:55:08 2017 +0300 Committer: max-orlov 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