Skip to content

Commit

Permalink
fix app type
Browse files Browse the repository at this point in the history
  • Loading branch information
yikf committed Dec 28, 2023
1 parent d1eb5ae commit 5e5045e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ abstract class EngineYarnModeSubmitter extends Logging {
kyuubiConf.get(ENGINE_DEPLOY_YARN_MODE_PRIORITY).foreach { appPriority =>
appContext.setPriority(Priority.newInstance(appPriority))
}
appContext.setApplicationType(s"KYUUBI-${engineType.toUpperCase(Locale.ROOT)}-ENGINE")
appContext.setApplicationType(s"${engineType.toUpperCase(Locale.ROOT)}")

val allTags = new util.HashSet[String]
kyuubiConf.get(ENGINE_DEPLOY_YARN_MODE_TAGS).foreach { tags =>
Expand Down

0 comments on commit 5e5045e

Please sign in to comment.