Error in split and filter (is Not Null)
I keep getting an error on my data flow when using a split or filter node to look for Null values on a date field.
This is the error:
“Split
Error in node setup: java.lang.IllegalArgumentException: Cannot create PyString with non-byte value”
The advanced script looks like this (though I am using just the drop down criteria to select the input field then the operator ‘Is Not Null’
_cond = ( \
( \
inputs[0][u'Fecha modificación'] is not Null \
) \
)
if _cond:
outputs[0] += inputs[0]
else:
outputs[1] += inputs[0]
Please sign in to leave a comment.
Comments
2 comments