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