Skip to content
Snippets Groups Projects
Commit e07eef83 authored by Reynold Xin's avatar Reynold Xin
Browse files

Merge pull request #925 from davidmccauley/master

SPARK-894 - Not all WebUI fields delivered VIA JSON
parents 8432f27f 5dd875c5
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,9 @@ private[spark] object JsonProtocol {
("cores" -> obj.desc.maxCores) ~
("user" -> obj.desc.user) ~
("memoryperslave" -> obj.desc.memoryPerSlave) ~
("submitdate" -> obj.submitDate.toString)
("submitdate" -> obj.submitDate.toString) ~
("state" -> obj.state.toString) ~
("duration" -> obj.duration)
}
def writeApplicationDescription(obj: ApplicationDescription) = {
......
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