Fix nginx_plus tests with 32bit int

This commit is contained in:
Daniel Nelson
2017-09-25 15:48:09 -07:00
committed by Daniel Nelson
parent f823fc73f6
commit 5dff5932fd
2 changed files with 9 additions and 9 deletions

View File

@@ -162,10 +162,10 @@ type Status struct {
} `json:"processes"`
Connections struct {
Accepted int `json:"accepted"`
Dropped int `json:"dropped"`
Active int `json:"active"`
Idle int `json:"idle"`
Accepted int64 `json:"accepted"`
Dropped int64 `json:"dropped"`
Active int64 `json:"active"`
Idle int64 `json:"idle"`
} `json:"connections"`
Ssl *struct { // added in version 6