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 07F27200BBD for ; Tue, 25 Oct 2016 05:16:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 06A7A160B00; Tue, 25 Oct 2016 03:16:04 +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 4EB4A160AEB for ; Tue, 25 Oct 2016 05:16:03 +0200 (CEST) Received: (qmail 78940 invoked by uid 500); 25 Oct 2016 03:16:02 -0000 Mailing-List: contact commits-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@spark.apache.org Received: (qmail 78931 invoked by uid 99); 25 Oct 2016 03:16: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, 25 Oct 2016 03:16:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 50F76DFB78; Tue, 25 Oct 2016 03:16:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: zsxwing@apache.org To: commits@spark.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: spark git commit: [SPARK-17894][HOTFIX] Fix broken build from Date: Tue, 25 Oct 2016 03:16:02 +0000 (UTC) archived-at: Tue, 25 Oct 2016 03:16:04 -0000 Repository: spark Updated Branches: refs/heads/master d479c5262 -> 483c37c58 [SPARK-17894][HOTFIX] Fix broken build from The named parameter in an overridden class isn't supported in Scala 2.10 so was breaking the build. cc zsxwing Author: Kay Ousterhout Closes #15617 from kayousterhout/hotfix. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/483c37c5 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/483c37c5 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/483c37c5 Branch: refs/heads/master Commit: 483c37c581fedc64b218e294ecde1a7bb4b2af9c Parents: d479c52 Author: Kay Ousterhout Authored: Mon Oct 24 20:16:00 2016 -0700 Committer: Shixiong Zhu Committed: Mon Oct 24 20:16:00 2016 -0700 ---------------------------------------------------------------------- core/src/test/scala/org/apache/spark/scheduler/FakeTask.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/483c37c5/core/src/test/scala/org/apache/spark/scheduler/FakeTask.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/org/apache/spark/scheduler/FakeTask.scala b/core/src/test/scala/org/apache/spark/scheduler/FakeTask.scala index f395fe9..a757041 100644 --- a/core/src/test/scala/org/apache/spark/scheduler/FakeTask.scala +++ b/core/src/test/scala/org/apache/spark/scheduler/FakeTask.scala @@ -22,7 +22,7 @@ import org.apache.spark.TaskContext class FakeTask( stageId: Int, partitionId: Int, - prefLocs: Seq[TaskLocation] = Nil) extends Task[Int](stageId, stageAttemptId = 0, partitionId) { + prefLocs: Seq[TaskLocation] = Nil) extends Task[Int](stageId, 0, partitionId) { override def runTask(context: TaskContext): Int = 0 override def preferredLocations: Seq[TaskLocation] = prefLocs } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org For additional commands, e-mail: commits-help@spark.apache.org