Skip to content

Commit

Permalink
Fix wrong comment about Scheduler FROZEN state
Browse files Browse the repository at this point in the history
  • Loading branch information
lpellegr committed Dec 21, 2016
1 parent dece236 commit 4205123
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -69,7 +69,7 @@ public enum SchedulerStatus implements java.io.Serializable {
/**
* The scheduler is in freeze mode.
* It means that every running tasks will be terminated,
* but the running jobs will wait for the scheduler to resume.
* but the pending jobs will wait for the scheduler to resume.
* It can be resumed, stopped, paused or shutdown.
*/
FROZEN("Frozen"),
Expand Down Expand Up @@ -213,4 +213,4 @@ public boolean isSubmittable() {
return !isShuttingDown() && this != STOPPED;
}

}
}

0 comments on commit 4205123

Please sign in to comment.