MongoDB C# Driver v3.0 was just released and EphemeralMongo no longer works in single node replica set mode.
I've narrowed it down to connect=direct parameter, it appears that's no longer supported by the client and it just times out.
Replacing it with directConnection=true seems to fix it.
MongoDB C# Driver v3.0 was just released and EphemeralMongo no longer works in single node replica set mode. I've narrowed it down to
connect=direct
parameter, it appears that's no longer supported by the client and it just times out. Replacing it withdirectConnection=true
seems to fix it.