Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
pan3793 committed Mar 31, 2023
1 parent 9ee7e04 commit bf14ad8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ object KubernetesApplicationOperation extends Logging {
case "Running" => RUNNING
case "Succeeded" => FINISHED
case "Failed" | "Error" => FAILED
case "Unknown" => ApplicationState.UNKNOWN
case "Unknown" => UNKNOWN
case _ =>
warn(s"The kubernetes driver pod state: $state is not supported, " +
"mark the application state as UNKNOWN.")
ApplicationState.UNKNOWN
UNKNOWN
}
}

0 comments on commit bf14ad8

Please sign in to comment.