We have found an issue trying to save an object(car) with another nested object (owner).
def to_indexed_json
self.to_json(include: { owner: { proprietary: :name }})
end
This started to happen, when we added a new field (boolean) to the owner object.
and now when we try to save a record it fails throwing this exception:
MapperParsingException[failed to parse [owner. permission]]; nested: JsonParseException[Current token (VALUE_FALSE) not numeric, can not use numeric value accessors
We have found an issue trying to save an object(car) with another nested object (owner).
This started to happen, when we added a new field (boolean) to the owner object. and now when we try to save a record it fails throwing this exception:
any ideas?
Regards,