You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to get variables and one of them are of type List with null value(s), the engine throws a NullPointerException, leading to the impossibility of returning any variable.
This happens every time we save some variable with the value [null].
Could you guys add the validation to check if object is null before trying to get its class type?
Or instead add some validation to prevent persisting variables in that situation?
Thanks in advance,
Pedro Silva
The text was updated successfully, but these errors were encountered:
Hi,
When we try to get variables and one of them are of type
List
withnull
value(s), the engine throws aNullPointerException
, leading to the impossibility of returning any variable.The problem is happening in the following line:
camunda-spin/dataformat-json-jackson/src/main/java/org/camunda/spin/impl/json/jackson/format/ListJacksonJsonTypeDetector.java
Line 46 in 28099c1
This happens every time we save some variable with the value
[null]
.Could you guys add the validation to check if
object
is null before trying to get its class type?Or instead add some validation to prevent persisting variables in that situation?
Thanks in advance,
Pedro Silva
The text was updated successfully, but these errors were encountered: