We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now serialization fails with error
DBRef('item', ObjectId('540cddee421aa93370ffa049')) is not JSON serializable
The reason is in result of ListField.to_native method:
[bson.son.SON({'_cls': 'Item', '_ref': DBRef('item', ObjectId('540cddee421aa93370ffa049'))}), ...]
It seems it is related to commit 4cae11f. Reverting this commit solves issue for me, but I'm not sure for what original commit was intended.
The text was updated successfully, but these errors were encountered:
Commit 4cae11f is for ListField to serialize decimal, boolean types correctly. Apparently it has broken ObjectId serialization. Will take a look asap
Sorry, something went wrong.
Fixed 6495878, sorry for latency
No branches or pull requests
Now serialization fails with error
The reason is in result of ListField.to_native method:
It seems it is related to commit 4cae11f. Reverting this commit solves issue for me, but I'm not sure for what original commit was intended.
The text was updated successfully, but these errors were encountered: