Skip to content

Commit

Permalink
autopilot: fix json key casing
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjan committed Feb 28, 2024
1 parent c009296 commit 017c775
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions autopilot/churn.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ func (c *accumulatedChurn) Alert(name string) alerts.Alert {
Severity: alerts.SeverityInfo,
Message: "Contract set changed",
Data: map[string]any{
"name": name,
"set_additions": c.additions,
"set_removals": c.removals,
"hint": hint,
"name": name,
"setAdditions": c.additions,
"setRemovals": c.removals,
"hint": hint,
},
Timestamp: time.Now(),
}
Expand Down

0 comments on commit 017c775

Please sign in to comment.