mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
types.AcknowledgementState: Fix state map
This commit is contained in:
parent
7fa8147303
commit
586e99a548
1 changed files with 2 additions and 2 deletions
|
|
@ -52,8 +52,8 @@ func (bas BadAcknowledgementState) Error() string {
|
|||
|
||||
// acknowledgementStates maps all valid AcknowledgementState values to their SQL representation.
|
||||
var acknowledgementStates = map[AcknowledgementState]string{
|
||||
0: "y",
|
||||
1: "n",
|
||||
0: "n",
|
||||
1: "y",
|
||||
2: "sticky",
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue