Return-Path: X-Original-To: apmail-aurora-commits-archive@minotaur.apache.org Delivered-To: apmail-aurora-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5D95411230 for ; Wed, 27 Aug 2014 22:36:48 +0000 (UTC) Received: (qmail 44775 invoked by uid 500); 27 Aug 2014 22:36:48 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 44738 invoked by uid 500); 27 Aug 2014 22:36:48 -0000 Mailing-List: contact commits-help@aurora.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@aurora.incubator.apache.org Delivered-To: mailing list commits@aurora.incubator.apache.org Received: (qmail 44728 invoked by uid 99); 27 Aug 2014 22:36:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Aug 2014 22:36:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 27 Aug 2014 22:36:46 +0000 Received: (qmail 43704 invoked by uid 99); 27 Aug 2014 22:36:26 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Aug 2014 22:36:26 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2FA3BA0135A; Wed, 27 Aug 2014 22:36:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wickman@apache.org To: commits@aurora.incubator.apache.org Message-Id: <52d5399d50014f9185cf938e2eda22e7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: Fix default logger in command runner. Date: Wed, 27 Aug 2014 22:36:26 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-aurora Updated Branches: refs/heads/master 3f8b5ea73 -> bf044427c Fix default logger in command runner. Bugs closed: AURORA-670 Reviewed at https://reviews.apache.org/r/25108/ Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/bf044427 Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/bf044427 Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/bf044427 Branch: refs/heads/master Commit: bf044427c7df101d11d779b1935f728ba93a0e75 Parents: 3f8b5ea Author: Joshua Cohen Authored: Wed Aug 27 15:36:17 2014 -0700 Committer: Brian Wickman Committed: Wed Aug 27 15:36:17 2014 -0700 ---------------------------------------------------------------------- src/main/python/apache/aurora/client/api/command_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/bf044427/src/main/python/apache/aurora/client/api/command_runner.py ---------------------------------------------------------------------- diff --git a/src/main/python/apache/aurora/client/api/command_runner.py b/src/main/python/apache/aurora/client/api/command_runner.py index 58c2984..a1fed5f 100644 --- a/src/main/python/apache/aurora/client/api/command_runner.py +++ b/src/main/python/apache/aurora/client/api/command_runner.py @@ -98,7 +98,7 @@ class DistributedCommandRunner(object): return TaskQuery(statuses=LIVE_STATES, owner=Identity(role), jobName=job, environment=env) def __init__(self, cluster, role, env, jobs, ssh_user=None, - log_fn=log.error): + log_fn=log.log): self._cluster = cluster self._api = AuroraClientAPI(cluster=cluster) self._role = role