File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1+ ```release-note:bug
2+ server: **(Enterprise Only)** Fixed an issue where snake case keys were rejected when configuring the control-plane-request-limit config entry
3+ ```
Original file line number Diff line number Diff line change 44package api
55
66type ReadWriteRatesConfig struct {
7- ReadRate float64
8- WriteRate float64
7+ ReadRate float64 `alias:"read_rate"`
8+ WriteRate float64 `alias:"write_rate"`
99}
1010
1111type RateLimitIPConfigEntry struct {
@@ -16,8 +16,8 @@ type RateLimitIPConfigEntry struct {
1616
1717 Meta map [string ]string `json:",omitempty"`
1818 // overall limits
19- ReadRate float64
20- WriteRate float64
19+ ReadRate float64 `alias:"read_rate"`
20+ WriteRate float64 `alias:"write_rate"`
2121
2222 //limits specific to a type of call
2323 ACL * ReadWriteRatesConfig `json:",omitempty"` // OperationCategoryACL OperationCategory = "ACL"
You can’t perform that action at this time.
0 commit comments