@markusthoemmes ,already modified.
Another thing, i want to share.
Why i changed `whisk.core.entity.Size.scala`'s `val size =
matcher.group(1).toInt` to `toLong`,
because if use `toInt` and if the pingMessage is like below
```
{"name":{"instance":2,"uniqueName":"2","userMemory":"10737418240 B"}}
```
When deserialize,will report below error
```
failed processing message:
{"name":{"instance":2,"uniqueName":"2","userMemory":"10737418240 B"}} with
java.lang.NumberFormatException: For input string: "10737418240"
```
Because `10737418240` is very big for `Int`, so it is necessary to change to
`toLong` here.
[ Full content available at:
https://github.com/apache/incubator-openwhisk/pull/4011 ]
This message was relayed via gitbox.apache.org for [email protected]