summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/NodeStateReason.java
blob: a092e2012ece7ab94a1166ed3c0ad0442a3fd6dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

public enum NodeStateReason {

    // FIXME some of these reasons may be unnecessary as they are reported implicitly by reported/wanted state changes
    NODE_TOO_UNSTABLE,
    WITHIN_MAINTENANCE_GRACE_PERIOD,
    FORCED_INTO_MAINTENANCE,
    GROUP_IS_DOWN

}