Skip to content
Snippets Groups Projects
Commit 048ecca6 authored by Sean Owen's avatar Sean Owen Committed by Josh Rosen
Browse files

SPARK-2143 [WEB UI] Add Spark version to UI footer

This PR adds the Spark version number to the UI footer; this is how it looks:

![screen shot 2014-11-21 at 22 58 40](https://cloud.githubusercontent.com/assets/822522/5157738/f4822094-7316-11e4-98f1-333a535fdcfa.png)

Author: Sean Owen <sowen@cloudera.com>

Closes #3410 from srowen/SPARK-2143 and squashes the following commits:

e9b3a7a [Sean Owen] Add Spark version to footer
parent 0fcd24cc
No related branches found
No related tags found
No related merge requests found
...@@ -212,6 +212,11 @@ private[spark] object UIUtils extends Logging { ...@@ -212,6 +212,11 @@ private[spark] object UIUtils extends Logging {
</div> </div>
{content} {content}
</div> </div>
<div id="footer">
<div class="container-fluid">
<p class="muted credit">Spark {org.apache.spark.SPARK_VERSION}</p>
</div>
</div>
</body> </body>
</html> </html>
} }
...@@ -238,6 +243,11 @@ private[spark] object UIUtils extends Logging { ...@@ -238,6 +243,11 @@ private[spark] object UIUtils extends Logging {
</div> </div>
{content} {content}
</div> </div>
<div id="footer">
<div class="container-fluid">
<p class="muted credit">Spark {org.apache.spark.SPARK_VERSION}</p>
</div>
</div>
</body> </body>
</html> </html>
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment