Having some trouble understanding the right approach here.
I have a connection to a mongodb replica set with three members (standard master-slave-slave). Everything is working fine with the connection when the master remains consistent.
pymongo.Connection(['host1:27017','host2:27018','host3:27019']).database_test
For some reason, when the replica set primary steps down, this starts to throw an autoreconnect exception that doesn't go away even after a new primary is elected.
Now I am aware that this exception needs to be caught and handled, most likely by waiting for the new primary to be elected. The problem I am having seems to be that it doesn't care at all once the new primary has been chosen. This "master has changed" exception just keeps coming up.
Printing the connection with __dict__ shows all three hosts.
I've tried passing the replicaset kwarg to the connection, but this comes up as an unexpected argument.
Is there a reason why this kind of connection wouldn't just start querying against the new primary.