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 51D74200BB4 for ; Tue, 27 Sep 2016 02:34:30 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 507C1160AE5; Tue, 27 Sep 2016 00:34:30 +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 D7455160AFF for ; Tue, 27 Sep 2016 02:34:27 +0200 (CEST) Received: (qmail 48226 invoked by uid 500); 27 Sep 2016 00:34:26 -0000 Mailing-List: contact commits-help@kylin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kylin.apache.org Delivered-To: mailing list commits@kylin.apache.org Received: (qmail 47232 invoked by uid 99); 27 Sep 2016 00:34:26 -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, 27 Sep 2016 00:34:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 31AEBE2F35; Tue, 27 Sep 2016 00:34:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: liyang@apache.org To: commits@kylin.apache.org Date: Tue, 27 Sep 2016 00:34:57 -0000 Message-Id: <690794bb794e462cad5745eae9467568@git.apache.org> In-Reply-To: <1c46a628e38d41a0adf28b86c7f0e470@git.apache.org> References: <1c46a628e38d41a0adf28b86c7f0e470@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [33/50] [abbrv] kylin git commit: KYLIN-2045 Fix argument order in JobInstanceExtractor#executeExtract() archived-at: Tue, 27 Sep 2016 00:34:30 -0000 KYLIN-2045 Fix argument order in JobInstanceExtractor#executeExtract() Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/818188d4 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/818188d4 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/818188d4 Branch: refs/heads/1.5.x-CDH5.7 Commit: 818188d484f2a848c84d3b1f79865e04e74dcd22 Parents: 5658283 Author: lidongsjtu Authored: Sat Sep 24 10:27:25 2016 +0800 Committer: lidongsjtu Committed: Sat Sep 24 10:42:46 2016 +0800 ---------------------------------------------------------------------- tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/818188d4/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java ---------------------------------------------------------------------- diff --git a/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java b/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java index ef77c6a..1023a8b 100644 --- a/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java +++ b/tool/src/main/java/org/apache/kylin/tool/JobInstanceExtractor.java @@ -85,7 +85,7 @@ public class JobInstanceExtractor extends AbstractInfoExtractor { long endTime = System.currentTimeMillis(); long startTime = endTime - period * 24 * 3600 * 1000; // time in Millis - List jobInstances = listJobInstances(cube, project, startTime, endTime); + List jobInstances = listJobInstances(project, cube, startTime, endTime); logger.info("There are {} jobInstances to extract.", jobInstances.size()); ObjectMapper mapper = new ObjectMapper();