aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/storage_node_up_states.h
blob: bc5c25a4b3859137ff031eef586ebc479bff43a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace storage::distributor {

/**
 * Returns the states in which the distributors consider storage nodes to be up.
 */
constexpr const char* storage_node_up_states() noexcept {
    return "uri";
}

}