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
I'm getting this error:
unknown Bson binary subtype 2
http://api.mongodb.org/python/current/api/bson/binary.html bson.binary.OLD_BINARY_SUBTYPE = 2 Old BSON binary subtype for binary data.
Is it just the matter of adding the following case in Data,Bson,Binary? 0x02 -> return $ Bin (Binary b)
The text was updated successfully, but these errors were encountered:
Probably. Give it a shot. Seems like that field type has been deprecated for a long time.
Sorry, something went wrong.
The database in question is running on MongoDB 2.6, but indeed it has been created years ago.
The change seems to work. May I create another pull request? Looks like old UUID subtypes are supported.
Pull request would be great
No branches or pull requests
I'm getting this error:
unknown Bson binary subtype 2
http://api.mongodb.org/python/current/api/bson/binary.html
bson.binary.OLD_BINARY_SUBTYPE = 2
Old BSON binary subtype for binary data.
Is it just the matter of adding the following case in Data,Bson,Binary?
0x02 -> return $ Bin (Binary b)
The text was updated successfully, but these errors were encountered: