@@ -29,6 +29,7 @@ type versions []int
2929type UpstreamServer struct {
3030 ID int `json:"id,omitempty"`
3131 Server string `json:"server"`
32+ MaxConns int `json:"max_conns"`
3233 MaxFails int `json:"max_fails"`
3334 FailTimeout string `json:"fail_timeout,omitempty"`
3435 SlowStart string `json:"slow_start,omitempty"`
@@ -38,6 +39,7 @@ type UpstreamServer struct {
3839type StreamUpstreamServer struct {
3940 ID int `json:"id,omitempty"`
4041 Server string `json:"server"`
42+ MaxConns int `json:"max_conns"`
4143 MaxFails int `json:"max_fails"`
4244 FailTimeout string `json:"fail_timeout,omitempty"`
4345 SlowStart string `json:"slow_start,omitempty"`
@@ -156,7 +158,7 @@ type StreamZoneSync struct {
156158 Status StreamZoneSyncStatus
157159}
158160
159- // SyncZone represents the syncronization status of a shared memory zone
161+ // SyncZone represents the synchronization status of a shared memory zone
160162type SyncZone struct {
161163 RecordsPending uint64 `json:"records_pending"`
162164 RecordsTotal uint64 `json:"records_total"`
0 commit comments