fnproject / fdk-java

Java API and runtime for fn.
Apache License 2.0
142 stars 53 forks source link

JSON Enabled function returns Error when Empty value is passed #148

Open michael-w-williams opened 6 years ago

michael-w-williams commented 6 years ago

After the adding JSON support for Java Fn function, if the function is passed an empty value, Fn returns:

{"message":"container exit code 2"}

Fn: Error calling function: status 502

The function does work with JSON data. If you pass:

{"name":"Bob"}

or even

{"name":""}

the function works fine. Tried modifying the function to test for null and isEmpty. Nothing like that worked. I'm guessing the function is throwing an uncaught exception.

May be related to 392 or 1192

Mike W.

shaunsmith commented 6 years ago

The error is pretty clear that an attempt to convert null to an an object failed. Null input should result in a null object passed to the function handler.

{ "message":"Unhandled internal error in FDK", "detail":"An exception was thrown during Input Coercion: Failed to coerce event to user function parameter type class com.example.fn.HelloFunction$Input"}

shaunsmith commented 5 years ago

@rikgibson can you take a look at this? I'd rather we fixed this bug than have to add warning text to the Java tutorial (https://github.com/fnproject/tutorials/pull/149).

CC007 commented 4 years ago

What is the status on this issue?