Skip to content

Commit

Permalink
Change the UI of Requested Cores into * if default cores is not set
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryshao committed Feb 27, 2015
1 parent e60ad2f commit a2483c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private[spark] class MasterPage(parent: MasterWebUI) extends WebUIPage("") {
}
}
<td>
{app.requestedCores}
{if (app.requestedCores == Int.MaxValue) "*" else app.requestedCores}
</td>
<td sorttable_customkey={app.desc.memoryPerSlave.toString}>
{Utils.megabytesToString(app.desc.memoryPerSlave)}
Expand Down

0 comments on commit a2483c2

Please sign in to comment.