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
|
## State that a Cluster Node can be in. State changes trigger an
|
||||||
## API notification (see notify_change()).
|
## API notification (see notify_change()).
|
||||||
type State: enum {
|
type State: enum {
|
||||||
Running, ##< Running and operating normally
|
RUNNING, ##< Running and operating normally
|
||||||
Stopped, ##< Explicitly stopped
|
STOPPED, ##< Explicitly stopped
|
||||||
Failed, ##< Failed to start; and permanently halted
|
FAILED, ##< Failed to start; and permanently halted
|
||||||
Crashed, ##< Crashed, will be restarted,
|
CRASHED, ##< Crashed, will be restarted,
|
||||||
Unknown, ##< State not known currently (e.g., because of lost connectivity)
|
UNKNOWN, ##< State not known currently (e.g., because of lost connectivity)
|
||||||
};
|
};
|
||||||
|
|
||||||
## Configuration describing a Cluster Node process.
|
## Configuration describing a Cluster Node process.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue