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 need to be able to test client sessions, but only replica sets support that. Is that possible with this?
The text was updated successfully, but these errors were encountered:
It’s not yet supported.
It could probably help implementation, if you could add a (simple) test case.
Sorry, something went wrong.
We can easily simulate a replica set without really implementing it by adding a few fields to the isMaster response, for example
response.put("setName", "rs0"); response.put("hosts", Collections.singleton(serverAddress)); response.put("me", serverAddress); response.put("primary", serverAddress); response.put("logicalSessionTimeoutMinutes", 100);
but this wont do to support sessions, for that we need support for OP_MSG #71
No branches or pull requests
I need to be able to test client sessions, but only replica sets support that. Is that possible with this?
The text was updated successfully, but these errors were encountered: