I'm migrating my mule project from version 3.6 to 3.7. In version 3.6 I was able to use invoker calling a method passing payload as an argument.
Now in version 3.7 if I do that I get NullPointerException
, when payload is null
, in class InvokerMessageProcessor
, line 272, when the following test is executed:
if (!(type.isAssignableFrom(arg.getClass())))
Because when payload is null
arg
is null
.
Is this a bug?