Skip to content
Snippets Groups Projects
Commit 5dd875c5 authored by David McCauley's avatar David McCauley
Browse files

SPARK-894 - Not all WebUI fields delivered VIA JSON

parent 8c14f4b7
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