[#291] pool: Use more robust way to init methods

Signed-off-by: Denis Kirillov <denis@nspcc.ru>
remotes/fyrchik/fuzz-tests
Denis Kirillov 2022-07-25 09:52:05 +03:00 committed by fyrchik
parent 828cfdc5bf
commit 90255e9efa
1 changed files with 5 additions and 2 deletions

View File

@ -135,6 +135,7 @@ const (
methodObjectHead
methodObjectRange
methodSessionCreate
methodLast
)
// String implements fmt.Stringer.
@ -170,14 +171,16 @@ func (m MethodIndex) String() string {
return "objectRange"
case methodSessionCreate:
return "sessionCreate"
case methodLast:
return "it's a system name rather than a method"
default:
return "unknown"
}
}
func newClientStatusMonitor(addr string, errorThreshold uint32) clientStatusMonitor {
methods := make([]*methodStatus, methodSessionCreate+1)
for i := methodBalanceGet; i <= methodSessionCreate; i++ {
methods := make([]*methodStatus, methodLast)
for i := methodBalanceGet; i < methodLast; i++ {
methods[i] = &methodStatus{name: i.String()}
}