Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
zwangsheng committed Mar 28, 2023
1 parent 05dfc59 commit 35acd61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class KubernetesApplicationOperation extends ApplicationOperation with Logging {
val info = appInfoStore.getOrDefault(tag, ApplicationInfo.notFound)
info.state match {
// Kyuubi should wait second if pod is not be created
case NOT_FOUND & submitTime.nonEmpty =>
case NOT_FOUND if submitTime.nonEmpty =>
val elapsedTime = System.currentTimeMillis() - submitTime.get
if (elapsedTime > submitTimeout) {
error(s"Can't find target driver pod by tag: $tag, " +
Expand Down

0 comments on commit 35acd61

Please sign in to comment.