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 C9D0117706 for ; Wed, 5 Nov 2014 19:26:11 +0000 (UTC) Received: (qmail 77074 invoked by uid 500); 5 Nov 2014 19:26:11 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 77039 invoked by uid 500); 5 Nov 2014 19:26:11 -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 77030 invoked by uid 99); 5 Nov 2014 19:26:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Nov 2014 19:26:11 +0000 X-ASF-Spam-Status: No, hits=-2000.6 required=5.0 tests=ALL_TRUSTED,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, 05 Nov 2014 19:26:10 +0000 Received: (qmail 76849 invoked by uid 99); 5 Nov 2014 19:25:50 -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, 05 Nov 2014 19:25:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5154E908ABA; Wed, 5 Nov 2014 19:25:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wfarner@apache.org To: commits@aurora.incubator.apache.org Message-Id: <8b5a842da8454d668ecd644e7218b46e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: Remove --bind-var for cron deschedule. Date: Wed, 5 Nov 2014 19:25:50 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-aurora Updated Branches: refs/heads/master 9847b7b89 -> 98a4f42d5 Remove --bind-var for cron deschedule. Bugs closed: AURORA-854 Reviewed at https://reviews.apache.org/r/27591/ Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/98a4f42d Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/98a4f42d Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/98a4f42d Branch: refs/heads/master Commit: 98a4f42d5d2d6ab2ff3b54b68862e9d1e2b1e217 Parents: 9847b7b Author: Zameer Manji Authored: Wed Nov 5 11:25:32 2014 -0800 Committer: Bill Farner Committed: Wed Nov 5 11:25:32 2014 -0800 ---------------------------------------------------------------------- src/main/python/apache/aurora/client/cli/cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/98a4f42d/src/main/python/apache/aurora/client/cli/cron.py ---------------------------------------------------------------------- diff --git a/src/main/python/apache/aurora/client/cli/cron.py b/src/main/python/apache/aurora/client/cli/cron.py index e95ba8f..e0510df 100644 --- a/src/main/python/apache/aurora/client/cli/cron.py +++ b/src/main/python/apache/aurora/client/cli/cron.py @@ -59,7 +59,7 @@ class Deschedule(Verb): return "Remove the cron schedule for a job." def get_options(self): - return [BIND_OPTION, JOBSPEC_ARGUMENT] + return [JOBSPEC_ARGUMENT] def execute(self, context): api = context.get_api(context.options.jobspec.cluster)