mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Make members of the ClusterController::Types::State enum all-caps
A consistency tweak since we mostly use all-caps elsewhere as well.
This commit is contained in:
parent
3da95de5b8
commit
ad4744eba6
1 changed files with 5 additions and 5 deletions
|
@ -37,11 +37,11 @@ export {
|
|||
## State that a Cluster Node can be in. State changes trigger an
|
||||
## API notification (see notify_change()).
|
||||
type State: enum {
|
||||
Running, ##< Running and operating normally
|
||||
Stopped, ##< Explicitly stopped
|
||||
Failed, ##< Failed to start; and permanently halted
|
||||
Crashed, ##< Crashed, will be restarted,
|
||||
Unknown, ##< State not known currently (e.g., because of lost connectivity)
|
||||
RUNNING, ##< Running and operating normally
|
||||
STOPPED, ##< Explicitly stopped
|
||||
FAILED, ##< Failed to start; and permanently halted
|
||||
CRASHED, ##< Crashed, will be restarted,
|
||||
UNKNOWN, ##< State not known currently (e.g., because of lost connectivity)
|
||||
};
|
||||
|
||||
## Configuration describing a Cluster Node process.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue