autorun 포맷 오류시 대응
This commit is contained in:
@ -586,7 +586,9 @@ func (hc *houstonClient) checkOperation(client *grpc.ClientConn) error {
|
||||
count := 1
|
||||
if len(hascount) > 1 {
|
||||
service = hascount[0]
|
||||
count, _ = strconv.Atoi(hascount[1])
|
||||
if len(hascount[1]) > 0 {
|
||||
count, _ = strconv.Atoi(hascount[1])
|
||||
}
|
||||
} else {
|
||||
service = *autorun
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user