Details
-
Bug
-
Status: Closed
-
Minor - P4
-
Resolution: Fixed
-
2.9
-
None
-
None
Description
MongoReplicaSetClient in PyMongo 2.9 forgets to set its uuid_subtype from the uuidRepresentation keyword argument. The correct answer in the examples below is "5", not "3".
>>> MongoReplicaSetClient(replicaSet='replset', uuidRepresentation='javaLegacy').uuid_subtype
|
3
|
>>> MongoClient(replicaSet='replset', uuidRepresentation='javaLegacy').uuid_subtype
|
5
|