facebookarchive / swift

An annotation-based Java library for creating Thrift serializable types and services.
Apache License 2.0
900 stars 297 forks source link

java.lang.NullPointerException: value is null #338

Closed johje349 closed 6 years ago

johje349 commented 7 years ago

When returning a List containing some null's we get the following error: java.lang.NullPointerException: value is null

Is this a limitation in swift or thrift? Any plans on supporting it?

m-hogue commented 7 years ago

Thrift doesn't support sending nulls over the wire. You need to either throw an exception (which needs to be annotated on your services) or wrap the result in something.