You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by an...@apache.org on 2015/02/24 20:08:24 UTC

spark git commit: [SPARK-5965] Standalone Worker UI displays {{USER_JAR}}

Repository: spark
Updated Branches:
  refs/heads/master 64d2c01ff -> 6d2caa576


[SPARK-5965] Standalone Worker UI displays {{USER_JAR}}

For screenshot see: https://issues.apache.org/jira/browse/SPARK-5965
This was caused by 20a6013106b56a1a1cc3e8cda092330ffbe77cc3.

Author: Andrew Or <an...@databricks.com>

Closes #4739 from andrewor14/user-jar-blocker and squashes the following commits:

23c4a9e [Andrew Or] Use right argument


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/6d2caa57
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/6d2caa57
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/6d2caa57

Branch: refs/heads/master
Commit: 6d2caa576fcdc5c848d1472b09c685b3871e220e
Parents: 64d2c01
Author: Andrew Or <an...@databricks.com>
Authored: Tue Feb 24 11:08:07 2015 -0800
Committer: Andrew Or <an...@databricks.com>
Committed: Tue Feb 24 11:08:07 2015 -0800

----------------------------------------------------------------------
 .../main/scala/org/apache/spark/deploy/worker/ui/WorkerPage.scala  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/6d2caa57/core/src/main/scala/org/apache/spark/deploy/worker/ui/WorkerPage.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/org/apache/spark/deploy/worker/ui/WorkerPage.scala b/core/src/main/scala/org/apache/spark/deploy/worker/ui/WorkerPage.scala
index 327b905..720f13b 100644
--- a/core/src/main/scala/org/apache/spark/deploy/worker/ui/WorkerPage.scala
+++ b/core/src/main/scala/org/apache/spark/deploy/worker/ui/WorkerPage.scala
@@ -134,7 +134,7 @@ private[spark] class WorkerPage(parent: WorkerWebUI) extends WebUIPage("") {
   def driverRow(driver: DriverRunner): Seq[Node] = {
     <tr>
       <td>{driver.driverId}</td>
-      <td>{driver.driverDesc.command.arguments(1)}</td>
+      <td>{driver.driverDesc.command.arguments(2)}</td>
       <td>{driver.finalState.getOrElse(DriverState.RUNNING)}</td>
       <td sorttable_customkey={driver.driverDesc.cores.toString}>
         {driver.driverDesc.cores.toString}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org