Timothee Cour

Results 437 comments of Timothee Cour

> Could you pull again the fix-ssl-connections branch? I did; it shows the same error as in top post when I compile with -d:ssl, and does indeed show an informative...

looks like it happens with all the aws-cpp-sdk-* libraries ; after playing around a bit more with `otool -L` (linux's ldd) to figure out whether a dependent library was responsible,...

> Since it's calling directly the openssl shared lib, perhaps it has to do with the shared lib itself, IDK though precisely what to observe here, whether it's the openssl...

i think i got something to work, but using a different approach from your above suggestion (and without changing `SSL_CTX_new` call): ``` nim cpp -d:ssl --dynlibOverride:ssl -d:openssl10 --passl:/usr/lib/libcrypto.44.dylib --passl:/usr/lib/libssl.44.dylib main.nim...

> Did you add the mongo.close() before quitting the test code? yes, following does work for me: nim r -d:ssl --dynlibOverride:ssl -d:openssl10 --passl:/usr/lib/libcrypto.44.dylib --passl:/usr/lib/libssl.44.dylib --passl:-laws-cpp-sdk-core $timn_D/tests/nim/all/t11095.nim with `44` explained by...

> Also could you try to patch the SSLv23_method to TLS_method above ? Just to see whether it works or not, after that you can revert it back to original...

thanks for your quick reply! I've looked at https://www.mongodb.com/blog/post/mongodb-3-6-here-to-SRV-you-with-easier-replica-set-connections?jmp=fcb&utm_source=4244&utm_medium=FBPAGE&utm_term=4&linkId=50841309 and ran the python code mentioned in `We can see how this works in practice on a MongoDB Atlas cluster with...

* I've split off the other issue (authenticateScramSha1 => https://github.com/SSPkrolik/nimongo/issues/89) from this one (srv) * I'm guessing another thing missing here is ability to parse uri to extract multiple hosts,...

an ideal mongo library for me would wrap libmongoc for most things and provide a friendly high level wrapper around it. But https://github.com/nim-lang/mongo unfortunately is described as "unsuable" in the...

> BTW, I created the fork as I was wanting to use it on a web server and adding pooling fundamentally changed the nature of the library IMO @JohnAD does...