We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d65f27 commit b5ae211Copy full SHA for b5ae211
kyuubi-ctl/src/main/scala/org/apache/kyuubi/ctl/util/Render.scala
@@ -111,6 +111,9 @@ private[ctl] object Render {
111
112
private def buildBatchAppInfo(batch: Batch, showDiagnostic: Boolean = true): List[String] = {
113
val batchAppInfo = ListBuffer[String]()
114
+ batch.getBatchInfo.asScala.foreach { case (key, value) =>
115
+ batchAppInfo += s"$key: $value"
116
+ }
117
if (batch.getAppStartTime > 0) {
118
batchAppInfo += s"App Start Time:" +
119
s" ${millisToDateString(batch.getAppStartTime, "yyyy-MM-dd HH:mm:ss")}"
0 commit comments