Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,9 @@ private[deploy] class Master(
exec.state = state

if (state == ExecutorState.RUNNING) {
assert(oldState == ExecutorState.LAUNCHING,
s"executor $execId state transfer from $oldState to RUNNING is illegal")
if (oldState != ExecutorState.LAUNCHING) {
logWarning(s"Executor $execId state transfer from $oldState to RUNNING is unexpected")
}
appInfo.resetRetryCount()
}

Expand Down