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 DAD631782D for ; Tue, 17 Feb 2015 18:49:56 +0000 (UTC) Received: (qmail 8504 invoked by uid 500); 17 Feb 2015 18:49:41 -0000 Delivered-To: apmail-aurora-commits-archive@aurora.apache.org Received: (qmail 8471 invoked by uid 500); 17 Feb 2015 18:49:41 -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 8462 invoked by uid 99); 17 Feb 2015 18:49:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Feb 2015 18:49:40 +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; Tue, 17 Feb 2015 18:49:19 +0000 Received: (qmail 5583 invoked by uid 99); 17 Feb 2015 18:48:02 -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; Tue, 17 Feb 2015 18:48:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C0F49E03A1; Tue, 17 Feb 2015 18:48:01 +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: <55f92633b90e42febea7cabf3c7e05f0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-aurora git commit: Fix build break - remove unused imports. Date: Tue, 17 Feb 2015 18:48:01 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-aurora Updated Branches: refs/heads/master c599e0c49 -> 2b8eb4bc3 Fix build break - remove unused imports. Reviewed at https://reviews.apache.org/r/31124/ Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/2b8eb4bc Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/2b8eb4bc Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/2b8eb4bc Branch: refs/heads/master Commit: 2b8eb4bc3391c747da535b834d4b5f28fb97d016 Parents: c599e0c Author: Bill Farner Authored: Tue Feb 17 10:47:02 2015 -0800 Committer: Bill Farner Committed: Tue Feb 17 10:47:02 2015 -0800 ---------------------------------------------------------------------- src/main/python/apache/aurora/executor/executor_vars.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/2b8eb4bc/src/main/python/apache/aurora/executor/executor_vars.py ---------------------------------------------------------------------- diff --git a/src/main/python/apache/aurora/executor/executor_vars.py b/src/main/python/apache/aurora/executor/executor_vars.py index 283b624..561f945 100644 --- a/src/main/python/apache/aurora/executor/executor_vars.py +++ b/src/main/python/apache/aurora/executor/executor_vars.py @@ -14,14 +14,11 @@ import os import time -from zipfile import BadZipfile import psutil -from pex.pex import PexInfo from twitter.common.exceptions import ExceptionalThread -from twitter.common.metrics import LambdaGauge, MutatorGauge, NamedGauge, Observable +from twitter.common.metrics import LambdaGauge, MutatorGauge, Observable from twitter.common.quantity import Amount, Time -from twitter.common.string.scanf import ScanfParser class ExecutorVars(Observable, ExceptionalThread):