File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
main/scala/org/apache/kyuubi/server/metadata
test/scala/org/apache/kyuubi/server/metadata/jdbc Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -388,6 +388,7 @@ object MetadataManager extends Logging {
388
388
id = metadata.engineId,
389
389
name = metadata.engineName,
390
390
state = ApplicationState .withName(metadata.engineState),
391
- error = metadata.engineError)
391
+ error = metadata.engineError,
392
+ podName = Option (metadata.podName))
392
393
}
393
394
}
Original file line number Diff line number Diff line change @@ -334,6 +334,7 @@ class JDBCMetadataStoreSuite extends KyuubiFunSuite {
334
334
assert(applicationInfo.name == " appName2" )
335
335
assert(applicationInfo.state == ApplicationState .FAILED )
336
336
assert(applicationInfo.error == Some (" appError2" ))
337
+ assert(applicationInfo.podName == Some (" podName2" ))
337
338
338
339
// test generic update
339
340
jdbcMetadataStore.updateKubernetesEngineInfo(metadata)
You can’t perform that action at this time.
0 commit comments