summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/NodeStateReason.java
blob: 7a6be664ec86e85ea80c5c52682aa7d4ef9490b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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,
    MAY_HAVE_MERGES_PENDING

}